From e934fe27824dfe34bf9451a775e2fbcbe3586739 Mon Sep 17 00:00:00 2001 From: "Abdallah A. Zaqout" <26047413+zaqoutabed@users.noreply.github.com> Date: Sun, 23 Nov 2025 14:09:58 +0300 Subject: [PATCH 001/263] fix: stop validation when click pervious btn --- frappe/public/js/frappe/web_form/web_form.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/web_form/web_form.js b/frappe/public/js/frappe/web_form/web_form.js index 5ee2c22128..71b167e065 100644 --- a/frappe/public/js/frappe/web_form/web_form.js +++ b/frappe/public/js/frappe/web_form/web_form.js @@ -103,9 +103,9 @@ export default class WebForm extends frappe.ui.FieldGroup { $(".web-form-footer .left-area").prepend(this.$previous_button); this.$previous_button.on("click", () => { - let is_validated = me.validate_section(); + // let is_validated = me.validate_section(); - if (!is_validated) return false; + // if (!is_validated) return false; /** The eslint utility cannot figure out if this is an infinite loop in backwards and From afdcdfb8518ff88dc94d7d363841e621c0e1407f Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Fri, 5 Dec 2025 12:55:04 +0100 Subject: [PATCH 002/263] fix: input change handling in FieldGroup --- frappe/public/js/frappe/ui/field_group.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frappe/public/js/frappe/ui/field_group.js b/frappe/public/js/frappe/ui/field_group.js index 760881770e..ed3368b1e1 100644 --- a/frappe/public/js/frappe/ui/field_group.js +++ b/frappe/public/js/frappe/ui/field_group.js @@ -48,13 +48,13 @@ frappe.ui.FieldGroup = class FieldGroup extends frappe.ui.form.Layout { $(this.wrapper) .find("input, select") - .on("change awesomplete-selectcomplete", () => { - this.dirty = true; - frappe.run_serially([ - () => frappe.timeout(0.1), - () => me.refresh_dependency(), - ]); - }); + .on( + "change input awesomplete-selectcomplete", + frappe.utils.debounce(() => { + this.dirty = true; + me.refresh_dependency(); + }, 100) + ); } } From 721ef09dad316cb199166fea73f3127e19972209 Mon Sep 17 00:00:00 2001 From: DhavalGala999 Date: Thu, 11 Dec 2025 12:41:59 +0530 Subject: [PATCH 003/263] fix: safely handle null/NaN/empty in shorten_number Prevents 'Cannot read properties of null (reading "length")' in number cards when aggregate functions (AVG) return null or empty results. - Return empty string for null, undefined, empty string, NaN - Use digit count to decide if shortening is needed - Preserve behavior for valid numeric inputs --- frappe/public/js/frappe/utils/utils.js | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/utils/utils.js b/frappe/public/js/frappe/utils/utils.js index 49f9f77054..a50e8fa98a 100644 --- a/frappe/public/js/frappe/utils/utils.js +++ b/frappe/public/js/frappe/utils/utils.js @@ -1449,8 +1449,19 @@ Object.assign(frappe.utils, { * max_no_of_decimals - max number of decimals of the shortened number */ - // return number if total digits is lesser than min_length - const len = String(number).match(/\d/g).length; + // return empty for null, undefined, or empty string + if (number == null || number === "") { + return ""; + } + + // extract digits from the number + const digits = String(number).match(/\d/g); + if (!digits) { + return ""; + } + + // return number if total digits are less than min_length + const len = digits.length; if (len < min_length) { return number.toString(); } From 7f5935d4057e4f3c3c06d3a17efa083639492d2b Mon Sep 17 00:00:00 2001 From: tridotstech Date: Sat, 13 Dec 2025 19:26:16 +0530 Subject: [PATCH 004/263] fix: restore custom_buttons tracking in add_custom_button Fixes #34920 --- frappe/public/js/frappe/form/form.js | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js index 249f957d94..d3f774c503 100644 --- a/frappe/public/js/frappe/form/form.js +++ b/frappe/public/js/frappe/form/form.js @@ -1209,9 +1209,9 @@ frappe.ui.form.Form = class FrappeForm { this.dashboard.clear_headline(); this.dashboard.set_headline_alert( __("This form has been modified after you have loaded it") + - '", + '", "alert-warning" ); } else { @@ -1246,7 +1246,7 @@ frappe.ui.form.Form = class FrappeForm { add_web_link(path, label) { label = __(label) || __("See on Website"); this.web_link = this.sidebar - .add_user_action(__(label), function () {}) + .add_user_action(__(label), function () { }) .attr("href", path || this.doc.route) .attr("target", "_blank"); } @@ -1480,7 +1480,13 @@ 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) { + let menu_item_label = group ? `${group} > ${label}` : label; + let menu_item = this.page.add_menu_item(menu_item_label, fn, false); + menu_item.parent().addClass("hidden-xl"); + this.custom_buttons[label] = btn; + } return btn; } @@ -2238,8 +2244,8 @@ frappe.ui.form.Form = class FrappeForm {
${__( + this.doctype + )}&ref_docname=${encodeURIComponent(this.docname)}'>${__( "All Submissions" )} `; From e8ed57df18477857982df790db552e368b5d3d21 Mon Sep 17 00:00:00 2001 From: tridotstech Date: Mon, 15 Dec 2025 11:30:21 +0530 Subject: [PATCH 005/263] style: apply prettier formatting --- frappe/public/js/frappe/form/form.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js index d3f774c503..0c872db145 100644 --- a/frappe/public/js/frappe/form/form.js +++ b/frappe/public/js/frappe/form/form.js @@ -1209,9 +1209,9 @@ frappe.ui.form.Form = class FrappeForm { this.dashboard.clear_headline(); this.dashboard.set_headline_alert( __("This form has been modified after you have loaded it") + - '", + '", "alert-warning" ); } else { @@ -1246,7 +1246,7 @@ frappe.ui.form.Form = class FrappeForm { add_web_link(path, label) { label = __(label) || __("See on Website"); this.web_link = this.sidebar - .add_user_action(__(label), function () { }) + .add_user_action(__(label), function () {}) .attr("href", path || this.doc.route) .attr("target", "_blank"); } @@ -2244,8 +2244,8 @@ frappe.ui.form.Form = class FrappeForm {
${__( + this.doctype + )}&ref_docname=${encodeURIComponent(this.docname)}'>${__( "All Submissions" )} `; From d7f6f1f65c7772ef2a39555e56b4fe83183fa576 Mon Sep 17 00:00:00 2001 From: Steffen Brennscheidt Date: Mon, 15 Dec 2025 22:27:03 +0000 Subject: [PATCH 006/263] fix: virtual childtable docfields value not in pdf childtable --- frappe/model/base_document.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 1cafc08944..73535a7d0c 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -1390,7 +1390,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) From 3a9d078dc33489f2d6cbd29ad6cb3667e7b2cfee Mon Sep 17 00:00:00 2001 From: AarDG10 Date: Wed, 31 Dec 2025 10:48:48 +0530 Subject: [PATCH 007/263] fix(report_view): enforce print permission for reports --- frappe/public/js/frappe/microtemplate.js | 3 +++ frappe/public/js/frappe/views/reports/report_view.js | 1 + frappe/utils/print_format.py | 4 +++- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/microtemplate.js b/frappe/public/js/frappe/microtemplate.js index f3041c677a..7a1558c949 100644 --- a/frappe/public/js/frappe/microtemplate.js +++ b/frappe/public/js/frappe/microtemplate.js @@ -187,6 +187,9 @@ frappe.render_pdf = function (html, opts = {}) { //Push the HTML content into an element formData.append("html", html); + if (opts.doctype) { + formData.append("doctype", opts.doctype); + } if (opts.orientation) { formData.append("orientation", opts.orientation); } diff --git a/frappe/public/js/frappe/views/reports/report_view.js b/frappe/public/js/frappe/views/reports/report_view.js index a34249c1d8..78ab8f59a9 100644 --- a/frappe/public/js/frappe/views/reports/report_view.js +++ b/frappe/public/js/frappe/views/reports/report_view.js @@ -1531,6 +1531,7 @@ frappe.views.ReportView = class ReportView extends frappe.views.ListView { }, { label: __("Print"), + condition: () => frappe.model.can_print(this.doctype), action: () => { // prepare rows in their current state, sorted and filtered const rows_in_order = this.datatable.datamanager.rowViewOrder diff --git a/frappe/utils/print_format.py b/frappe/utils/print_format.py index 59a94be98c..10afc78889 100644 --- a/frappe/utils/print_format.py +++ b/frappe/utils/print_format.py @@ -253,7 +253,9 @@ def download_pdf( @frappe.whitelist() -def report_to_pdf(html, orientation="Landscape"): +def report_to_pdf(html, orientation="Landscape", doctype=None): + if doctype: + frappe.has_permission(doctype, "print", throw=True) make_access_log(file_type="PDF", method="PDF", page=html) frappe.local.response.filename = "report.pdf" frappe.local.response.filecontent = get_pdf(html, {"orientation": orientation}) From 4da4388b076d4174f813187f05b3ae7c3793497e Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 2 Jan 2026 18:23:45 +0530 Subject: [PATCH 008/263] fix: Hide timeline and right sidebar from system settings --- .../system_settings/system_settings.json | 3 ++- .../system_settings/system_settings.py | 21 +++---------------- 2 files changed, 5 insertions(+), 19 deletions(-) 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/system_settings/system_settings.py b/frappe/core/doctype/system_settings/system_settings.py index 687fd006df..cf3386d17c 100644 --- a/frappe/core/doctype/system_settings/system_settings.py +++ b/frappe/core/doctype/system_settings/system_settings.py @@ -34,9 +34,7 @@ class SystemSettings(Document): country: DF.Link | None currency: DF.Link | None currency_precision: DF.Literal["", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] - date_format: DF.Literal[ - "yyyy-mm-dd", "dd-mm-yyyy", "dd/mm/yyyy", "dd.mm.yyyy", "mm/dd/yyyy", "mm-dd-yyyy" - ] + date_format: DF.Literal["yyyy-mm-dd", "dd-mm-yyyy", "dd/mm/yyyy", "dd.mm.yyyy", "mm/dd/yyyy", "mm-dd-yyyy"] default_app: DF.Literal[None] delete_background_exported_reports_after: DF.Int deny_multiple_sessions: DF.Check @@ -56,9 +54,7 @@ class SystemSettings(Document): enable_telemetry: DF.Check enable_two_factor_auth: DF.Check encrypt_backup: DF.Check - first_day_of_the_week: DF.Literal[ - "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" - ] + first_day_of_the_week: DF.Literal["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] float_precision: DF.Literal["", "2", "3", "4", "5", "6", "7", "8", "9"] force_user_to_reset_password: DF.Int force_web_capture_mode_for_uploads: DF.Check @@ -76,18 +72,7 @@ class SystemSettings(Document): max_report_rows: DF.Int max_signups_allowed_per_hour: DF.Int minimum_password_score: DF.Literal["1", "2", "3", "4"] - number_format: DF.Literal[ - "#,###.##", - "#.###,##", - "# ###.##", - "# ###,##", - "#'###.##", - "#, ###.##", - "#,##,###.##", - "#,###.###", - "#.###", - "#,###", - ] + number_format: DF.Literal["#,###.##", "#.###,##", "# ###.##", "# ###,##", "#'###.##", "#, ###.##", "#,##,###.##", "#,###.###", "#.###", "#,###"] only_allow_system_managers_to_upload_public_files: DF.Check otp_issuer_name: DF.Data | None otp_sms_template: DF.SmallText | None From 4ad934719b8399344296a54a1f5a03785fff556d Mon Sep 17 00:00:00 2001 From: Alex Leach Date: Mon, 17 Nov 2025 18:26:11 +0000 Subject: [PATCH 009/263] chore: Replace bleach HTML sanitiser for nh3 --- frappe/utils/html_utils.py | 112 ++++++++++++++++--------------------- pyproject.toml | 2 +- 2 files changed, 48 insertions(+), 66 deletions(-) diff --git a/frappe/utils/html_utils.py b/frappe/utils/html_utils.py index 11b289e114..807c901caa 100644 --- a/frappe/utils/html_utils.py +++ b/frappe/utils/html_utils.py @@ -1,6 +1,7 @@ import json import re +import nh3 from bleach_allowlist import bleach_allowlist import frappe @@ -18,12 +19,10 @@ EMOJI_PATTERN = re.compile( def clean_html(html): - import bleach - if not isinstance(html, str): return html - return bleach.clean( + return nh3.clean( clean_script_and_style(html), tags={ "div", @@ -43,56 +42,49 @@ def clean_html(html): "td", "tr", }, - attributes=[], - strip=True, strip_comments=True, ) def clean_email_html(html): - import bleach - from bleach.css_sanitizer import CSSSanitizer - if not isinstance(html, str): return html - css_sanitizer = CSSSanitizer( - allowed_css_properties=[ - "color", - "border-color", - "width", - "height", - "max-width", - "background-color", - "border-collapse", - "border-radius", - "border", - "border-top", - "border-bottom", - "border-left", - "border-right", - "margin", - "margin-top", - "margin-bottom", - "margin-left", - "margin-right", - "padding", - "padding-top", - "padding-bottom", - "padding-left", - "padding-right", - "font-size", - "font-weight", - "font-family", - "text-decoration", - "line-height", - "text-align", - "vertical-align", - "display", - ] - ) + allowed_css_properties = { + "color", + "border-color", + "width", + "height", + "max-width", + "background-color", + "border-collapse", + "border-radius", + "border", + "border-top", + "border-bottom", + "border-left", + "border-right", + "margin", + "margin-top", + "margin-bottom", + "margin-left", + "margin-right", + "padding", + "padding-top", + "padding-bottom", + "padding-left", + "padding-right", + "font-size", + "font-weight", + "font-family", + "text-decoration", + "line-height", + "text-align", + "vertical-align", + "display", + } - return bleach.clean( + return nh3.clean( clean_script_and_style(html), tags={ "div", @@ -124,10 +116,8 @@ def clean_email_html(html): "button", "img", }, - attributes=["border", "colspan", "rowspan", "src", "href", "style", "id"], - css_sanitizer=css_sanitizer, - protocols=["cid", "http", "https", "mailto", "data", "tel"], - strip=True, + attributes={"*": {"border", "colspan", "rowspan", "src", "href", "style", "id"}}, + filter_style_properties=allowed_css_properties, strip_comments=True, ) @@ -145,12 +135,11 @@ def clean_script_and_style(html): def sanitize_html(html, linkify=False, always_sanitize=False): """ Sanitize HTML tags, attributes and style to prevent XSS attacks - Based on bleach clean, bleach whitelist and html5lib's Sanitizer defaults + Based on nh3 clean (formerly bleach clean), bleach whitelist and html5lib's + Sanitizer defaults Does not sanitize JSON unless explicitly specified, as it could lead to future problems """ - import bleach - from bleach.css_sanitizer import CSSSanitizer from bs4 import BeautifulSoup if not isinstance(html, str): @@ -164,28 +153,21 @@ def sanitize_html(html, linkify=False, always_sanitize=False): return html tags = ( - acceptable_elements - + svg_elements - + mathml_elements - + ["html", "head", "meta", "link", "body", "style", "o:p"] + acceptable_elements.union(svg_elements) + .union(mathml_elements) + .union(["html", "head", "meta", "link", "body", "o:p"]) ) - def attributes_filter(tag, name, value): - if name.startswith("data-"): - return True - return name in acceptable_attributes - - attributes = {"*": attributes_filter, "svg": svg_attributes} - css_sanitizer = CSSSanitizer(allowed_css_properties=bleach_allowlist.all_styles) + attributes = {"*": acceptable_attributes, "svg": svg_attributes} # returns html with escaped tags, escaped orphan >, <, etc. - escaped_html = bleach.clean( + escaped_html = nh3.clean( html, tags=tags, attributes=attributes, - css_sanitizer=css_sanitizer, + generic_attribute_prefixes={"data-"}, strip_comments=False, - protocols={"cid", "http", "https", "mailto", "tel"}, + filter_style_properties=set(bleach_allowlist.all_styles), ) return escaped_html diff --git a/pyproject.toml b/pyproject.toml index 051a084b01..e1c028c420 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,6 @@ dependencies = [ "Whoosh~=2.7.4", "beautifulsoup4~=4.13.5", "bleach-allowlist~=1.0.3", - "bleach[css]~=6.3.0", "chardet~=5.2.0", "croniter~=6.0.0", "cryptography~=46.0.3", @@ -44,6 +43,7 @@ dependencies = [ "ldap3~=2.9.1", "markdown2~=2.5.4", "MarkupSafe~=3.0.3", + "nh3>=0.3.2", "num2words~=0.5.14", "oauthlib~=3.2.2", "openpyxl~=3.1.5", From 08fc19d032c966bb2af5eedac6cdc7f151205cb8 Mon Sep 17 00:00:00 2001 From: Alex Leach Date: Mon, 17 Nov 2025 20:31:34 +0000 Subject: [PATCH 010/263] chore: Remove rel acceptable attribute --- frappe/utils/html_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/utils/html_utils.py b/frappe/utils/html_utils.py index 807c901caa..ef555825b7 100644 --- a/frappe/utils/html_utils.py +++ b/frappe/utils/html_utils.py @@ -483,7 +483,6 @@ acceptable_attributes = [ "prompt", "radiogroup", "readonly", - "rel", "repeat-max", "repeat-min", "replace", From 2af319bb23f1e1b2f199a1d16eed4c2ed455701e Mon Sep 17 00:00:00 2001 From: Alex Leach Date: Mon, 17 Nov 2025 21:55:44 +0000 Subject: [PATCH 011/263] chore: bleach-nh3. Convert lists to sets (again; fighting against pre-commit making indent changes that obscured 'rel' from acceptable_attributes) --- frappe/utils/html_utils.py | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/frappe/utils/html_utils.py b/frappe/utils/html_utils.py index ef555825b7..cc7ac6cabc 100644 --- a/frappe/utils/html_utils.py +++ b/frappe/utils/html_utils.py @@ -207,7 +207,7 @@ def unescape_html(value): # adapted from https://raw.githubusercontent.com/html5lib/html5lib-python/4aa79f113e7486c7ec5d15a6e1777bfe546d3259/html5lib/sanitizer.py -acceptable_elements = [ +acceptable_elements = { "a", "abbr", "acronym", @@ -309,9 +309,9 @@ acceptable_elements = [ "ul", "var", "video", -] +} -mathml_elements = [ +mathml_elements = { "maction", "math", "merror", @@ -339,9 +339,9 @@ mathml_elements = [ "munder", "munderover", "none", -] +} -svg_elements = [ +svg_elements = { "a", "animate", "animateColor", @@ -377,9 +377,9 @@ svg_elements = [ "title", "tspan", "use", -] +} -acceptable_attributes = [ +acceptable_attributes = { "abbr", "accept", "accept-charset", @@ -540,16 +540,13 @@ acceptable_attributes = [ "itemtype", "itemid", "itemref", - "datetime", "data-is-group", -] +} -mathml_attributes = [ +mathml_attributes = { "actiontype", "align", "columnalign", - "columnalign", - "columnalign", "columnlines", "columnspacing", "columnspan", @@ -568,13 +565,10 @@ mathml_attributes = [ "mathbackground", "mathcolor", "mathvariant", - "mathvariant", "maxsize", "minsize", "other", "rowalign", - "rowalign", - "rowalign", "rowlines", "rowspacing", "rowspan", @@ -584,15 +578,14 @@ mathml_attributes = [ "separator", "stretchy", "width", - "width", "xlink:href", "xlink:show", "xlink:type", "xmlns", "xmlns:xlink", -] +} -svg_attributes = [ +svg_attributes = { "accent-height", "accumulate", "additive", @@ -735,4 +728,4 @@ svg_attributes = [ "y1", "y2", "zoomAndPan", -] +} From 5e7c8da8a6c420a085b6009cd663476e6e6b3171 Mon Sep 17 00:00:00 2001 From: Alex Leach Date: Tue, 18 Nov 2025 11:54:28 +0000 Subject: [PATCH 012/263] fix: Allow previously allowed href protocols (cid: and data:) --- frappe/utils/html_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/utils/html_utils.py b/frappe/utils/html_utils.py index cc7ac6cabc..b440e42c32 100644 --- a/frappe/utils/html_utils.py +++ b/frappe/utils/html_utils.py @@ -119,6 +119,7 @@ def clean_email_html(html): attributes={"*": {"border", "colspan", "rowspan", "src", "href", "style", "id"}}, filter_style_properties=allowed_css_properties, strip_comments=True, + url_schemes=nh3.ALLOWED_URL_SCHEMES.union({"cid", "data"}), ) @@ -168,6 +169,7 @@ def sanitize_html(html, linkify=False, always_sanitize=False): generic_attribute_prefixes={"data-"}, strip_comments=False, filter_style_properties=set(bleach_allowlist.all_styles), + url_schemes=nh3.ALLOWED_URL_SCHEMES.union({"cid"}), ) return escaped_html From 3b1ae43e94acca8559bb77c6e415af0fa67a5e30 Mon Sep 17 00:00:00 2001 From: Alex Leach Date: Fri, 21 Nov 2025 09:23:37 +0000 Subject: [PATCH 013/263] fix: Replace global bleach import with nh3 --- frappe/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/app.py b/frappe/app.py index 49cacb9a46..010b5bde0d 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 From a5ef0104f1bb80a26f095aca6f4220305006eda0 Mon Sep 17 00:00:00 2001 From: Alex Leach Date: Fri, 21 Nov 2025 16:36:35 +0000 Subject: [PATCH 014/263] fix: Update failing email_account unit tests that don't play with nh3 --- frappe/email/doctype/email_account/test_email_account.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/email/doctype/email_account/test_email_account.py b/frappe/email/doctype/email_account/test_email_account.py index d0d77a180f..c6f88c2862 100644 --- a/frappe/email/doctype/email_account/test_email_account.py +++ b/frappe/email/doctype/email_account/test_email_account.py @@ -132,7 +132,7 @@ class TestEmailAccount(IntegrationTestCase): TestEmailAccount.mocked_email_receive(email_account, messages) comm = frappe.get_doc("Communication", {"sender": "test_sender@example.com"}) - self.assertTrue("From: "Microsoft Outlook" <test_sender@example.com>" in comm.content) + self.assertTrue('From: "Microsoft Outlook" <test_sender@example.com>' in comm.content) self.assertTrue( "This is an e-mail message sent automatically by Microsoft Outlook while" in comm.content ) @@ -153,7 +153,7 @@ class TestEmailAccount(IntegrationTestCase): TestEmailAccount.mocked_email_receive(email_account, messages) comm = frappe.get_doc("Communication", {"sender": "test_sender@example.com"}) - self.assertTrue("From: "Microsoft Outlook" <test_sender@example.com>" in comm.content) + self.assertTrue('From: "Microsoft Outlook" <test_sender@example.com>' in comm.content) self.assertTrue( "This is an e-mail message sent automatically by Microsoft Outlook while" in comm.content ) From 8a826996404f39621432fe3a255d7c2cf0c024ae Mon Sep 17 00:00:00 2001 From: Alex Leach Date: Fri, 21 Nov 2025 23:47:23 +0000 Subject: [PATCH 015/263] fix(tests): Update more tests to conform with nh3 behaviour --- frappe/tests/test_document.py | 3 ++- frappe/tests/test_utils.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/frappe/tests/test_document.py b/frappe/tests/test_document.py index f1f3705470..27ffe39fca 100644 --- a/frappe/tests/test_document.py +++ b/frappe/tests/test_document.py @@ -262,6 +262,7 @@ class TestDocument(IntegrationTestCase): def test_xss_filter(self): d = self.test_insert() + subject = d.subject # script xss = '' @@ -271,7 +272,7 @@ class TestDocument(IntegrationTestCase): d.reload() self.assertTrue(xss not in d.subject) - self.assertTrue(escaped_xss in d.subject) + self.assertEqual(subject, d.subject) # onload xss = '
Test
' diff --git a/frappe/tests/test_utils.py b/frappe/tests/test_utils.py index a87b7a3793..cd074696e0 100644 --- a/frappe/tests/test_utils.py +++ b/frappe/tests/test_utils.py @@ -508,7 +508,7 @@ class TestHTMLUtils(IntegrationTestCase): sample = """

Hello

Para

text""" clean = clean_email_html(sample) self.assertTrue("

Hello

" in clean) - self.assertTrue('text' in clean) + self.assertTrue('text' in clean) def test_sanitize_html(self): from frappe.utils.html_utils import sanitize_html From ede139d164b4102f947de100df53a6259d7c7403 Mon Sep 17 00:00:00 2001 From: arshadqureshi93 Date: Thu, 8 Jan 2026 17:24:11 +0530 Subject: [PATCH 016/263] fix(list_view): prevent filters from populating read-only fields When creating a new document from a filtered list view, the filter values were being passed to the new form regardless of whether the field was read-only. This caused read-only fields with default values to be incorrectly overwritten by filter values. Now checks if the field is read-only before passing filter values, ensuring default values are preserved for read-only fields. Fixes #35764 --- frappe/public/js/frappe/list/list_view.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index a802edce4c..9f2c5bf0c8 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -312,7 +312,10 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { ]; this.filter_area.get().forEach((f) => { if (allowed_filter_types.includes(f[2]) && frappe.model.is_non_std_field(f[1])) { - options[f[1]] = f[3]; + const df = frappe.meta.get_field(doctype, f[1]); + if (df && !df.read_only) { + options[f[1]] = f[3]; + } } }); frappe.new_doc(doctype, options); From 89f0713d10123f1800fc6595f13def40621a6c5b Mon Sep 17 00:00:00 2001 From: Abdeali Chharchhoda Date: Mon, 12 Jan 2026 13:18:04 +0530 Subject: [PATCH 017/263] refactor: streamline address and contact rendering logic --- .../js/frappe/utils/address_and_contact.js | 46 +++++++++++++------ 1 file changed, 31 insertions(+), 15 deletions(-) diff --git a/frappe/public/js/frappe/utils/address_and_contact.js b/frappe/public/js/frappe/utils/address_and_contact.js index 5e3217366f..73cfb1964f 100644 --- a/frappe/public/js/frappe/utils/address_and_contact.js +++ b/frappe/public/js/frappe/utils/address_and_contact.js @@ -2,27 +2,42 @@ frappe.provide("frappe.contacts"); $.extend(frappe.contacts, { clear_address_and_contact: function (frm) { - $(frm.fields_dict["address_html"].wrapper).html(""); - frm.fields_dict["contact_html"] && $(frm.fields_dict["contact_html"].wrapper).html(""); + for (const field of ["address_html", "contact_html"]) { + $(frm.fields_dict[field]?.wrapper)?.html(""); + } }, render_address_and_contact: function (frm) { - // render address - if (frm.fields_dict["address_html"] && "addr_list" in frm.doc.__onload) { - $(frm.fields_dict["address_html"].wrapper) - .html(frappe.render_template("address_list", frm.doc.__onload)) - .find(".btn-address") - .on("click", () => new_record("Address", frm)); - } + const items = [ + { + field: "address_html", + data: "addr_list", + template: "address_list", + btn: ".btn-address", + doctype: "Address", + }, + { + field: "contact_html", + data: "contact_list", + template: "contact_list", + btn: ".btn-contact", + doctype: "Contact", + }, + ]; - // render contact - if (frm.fields_dict["contact_html"] && "contact_list" in frm.doc.__onload) { - $(frm.fields_dict["contact_html"].wrapper) - .html(frappe.render_template("contact_list", frm.doc.__onload)) - .find(".btn-contact") - .on("click", () => new_record("Contact", frm)); + for (const item of items) { + // render address or contact + const field_wrapper = frm.fields_dict[item.field]?.wrapper; + + if (field_wrapper && frm.doc.__onload && item.data in frm.doc.__onload) { + $(field_wrapper) + .html(frappe.render_template(item.template, frm.doc.__onload)) + .find(item.btn) + .on("click", () => new_record(item.doctype, frm)); + } } }, + get_last_doc: function (frm) { const reverse_routes = frappe.route_history.slice().reverse(); const last_route = reverse_routes.find((route) => { @@ -38,6 +53,7 @@ $.extend(frappe.contacts, { docname, }; }, + get_address_display: function (frm, address_field, display_field) { if (frm.updating_party_details) { return; From 3f00c923b34ead15c87c068cb18d090ccf2d4c09 Mon Sep 17 00:00:00 2001 From: Clayton Date: Tue, 13 Jan 2026 08:20:29 -0600 Subject: [PATCH 018/263] fix: auto-expand parent Section Break when nested item is active --- frappe/public/js/frappe/ui/sidebar/sidebar.js | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/frappe/public/js/frappe/ui/sidebar/sidebar.js b/frappe/public/js/frappe/ui/sidebar/sidebar.js index 4dbee57dbb..b283454b69 100644 --- a/frappe/public/js/frappe/ui/sidebar/sidebar.js +++ b/frappe/public/js/frappe/ui/sidebar/sidebar.js @@ -155,6 +155,38 @@ 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_if_needed(); + } + } + + expand_parent_section_if_needed() { + if (!this.active_item) return; + + // Check if the active item is inside a nested container (child of a Section Break) + // active_item is .standard-sidebar-item, we need to check its container + const $item_container = this.active_item.closest(".sidebar-item-container"); + if ($item_container.length === 0) return; + + const $nested_container = $item_container.parent(".nested-container"); + if ($nested_container.length === 0) return; + + // Find the parent Section Break container + const $section_break_container = $nested_container.closest(".section-item"); + if ($section_break_container.length === 0) return; + + // Find the Section Break item instance that contains this nested item + const section_label = $section_break_container.attr("item-name"); + if (!section_label) return; + + // Find the SectionBreakSidebarItem instance + for (let item of this.items) { + if (item.item && item.item.type === "Section Break" && item.item.label === section_label) { + // Expand the section break if it's collapsed + if (item.collapsed) { + item.open(); + } + break; + } } } From 76a89b85ff137290b9a5d4528d361e50248b7db4 Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Tue, 13 Jan 2026 15:20:15 +0000 Subject: [PATCH 019/263] fix(calendar): show time slot views --- frappe/public/js/frappe/views/calendar/calendar.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/public/js/frappe/views/calendar/calendar.js b/frappe/public/js/frappe/views/calendar/calendar.js index cd1f4c281c..21604b67a1 100644 --- a/frappe/public/js/frappe/views/calendar/calendar.js +++ b/frappe/public/js/frappe/views/calendar/calendar.js @@ -206,7 +206,7 @@ frappe.views.Calendar = class Calendar { } set_css() { const viewButtons = - ".fc-dayGridMonth-button, .fc-dayGridWeek-button, .fc-dayGridDay-button, .fc-today-button"; + ".fc-dayGridMonth-button, .fc-timeGridWeek-button, .fc-timeGridDay-button, .fc-today-button"; const fcViewButtonClasses = "fc-button fc-button-primary fc-button-active"; // remove fc-button styles @@ -253,13 +253,13 @@ frappe.views.Calendar = class Calendar { defaults.meridiem = "false"; this.cal_options = { plugins: frappe.FullCalendar.Plugins, - initialView: defaults.initialView || "dayGridMonth", + initialView: defaults.initialView || "timeGridWeek", locale: frappe.boot.lang, firstDay: 1, headerToolbar: { left: "prev,title,next", center: "", - right: "today,dayGridMonth,dayGridWeek,dayGridDay", + right: "today,dayGridMonth,timeGridWeek,timeGridDay", }, editable: true, droppable: true, From dcbbb12461ba49cdd5ffa93506a6464e5cc9af65 Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Tue, 13 Jan 2026 16:12:25 +0000 Subject: [PATCH 020/263] fix: update bind --- frappe/public/js/frappe/views/calendar/calendar.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frappe/public/js/frappe/views/calendar/calendar.js b/frappe/public/js/frappe/views/calendar/calendar.js index 21604b67a1..8482cfbc22 100644 --- a/frappe/public/js/frappe/views/calendar/calendar.js +++ b/frappe/public/js/frappe/views/calendar/calendar.js @@ -188,10 +188,10 @@ frappe.views.Calendar = class Calendar { const me = this; let btn_group = me.$wrapper.find(".fc-button-group"); btn_group.on("click", ".btn", function () { - let value = $(this).hasClass("fc-dayGridWeek-button") - ? "dayGridWeek" - : $(this).hasClass("fc-dayGridDay-button") - ? "dayGridDay" + let value = $(this).hasClass("fc-timeGridWeek-button") + ? "timeGridWeek" + : $(this).hasClass("fc-timeGridDay-button") + ? "timeGridDay" : "dayGridMonth"; me.set_localStorage_option("cal_initialView", value); }); From 1429632791e2103220c05558e9cbb42e881ea0c0 Mon Sep 17 00:00:00 2001 From: Clayton Date: Tue, 13 Jan 2026 10:45:43 -0600 Subject: [PATCH 021/263] fix: prettier --- frappe/public/js/frappe/ui/sidebar/sidebar.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/ui/sidebar/sidebar.js b/frappe/public/js/frappe/ui/sidebar/sidebar.js index b283454b69..c28fc69890 100644 --- a/frappe/public/js/frappe/ui/sidebar/sidebar.js +++ b/frappe/public/js/frappe/ui/sidebar/sidebar.js @@ -180,7 +180,11 @@ frappe.ui.Sidebar = class Sidebar { // Find the SectionBreakSidebarItem instance for (let item of this.items) { - if (item.item && item.item.type === "Section Break" && item.item.label === section_label) { + if ( + item.item && + item.item.type === "Section Break" && + item.item.label === section_label + ) { // Expand the section break if it's collapsed if (item.collapsed) { item.open(); From faa8b6b4ce0333ab6f89f2ee071f49b1d8b83671 Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Tue, 13 Jan 2026 17:18:22 +0000 Subject: [PATCH 022/263] fix: remove padding from datatable wrapper in report view --- frappe/public/scss/desk/report.scss | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frappe/public/scss/desk/report.scss b/frappe/public/scss/desk/report.scss index 27c8610ab1..adb4795504 100644 --- a/frappe/public/scss/desk/report.scss +++ b/frappe/public/scss/desk/report.scss @@ -303,8 +303,3 @@ display: flex; flex-wrap: wrap; } - -.datatable-wrapper { - padding-left: var(--padding-md); - padding-right: var(--padding-md); -} From b663179bf8d94824dbe5f269ccd919c96b0f8838 Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Tue, 13 Jan 2026 19:41:21 +0530 Subject: [PATCH 023/263] fix: copy releaserc from version-15 Also fix "branch" for future ease (cherry picked from commit ac4d4691849407a1018dbf26a1623fedf741e69b) Signed-off-by: Akhil Narang --- .releaserc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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" From 697472d237ddce18af0cd632ac8989492c8c59f2 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Tue, 13 Jan 2026 23:42:22 +0530 Subject: [PATCH 024/263] fix(listView): pagination visible on scroll --- frappe/public/js/frappe/list/base_list.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/list/base_list.js b/frappe/public/js/frappe/list/base_list.js index f28a1627ab..00818adc80 100644 --- a/frappe/public/js/frappe/list/base_list.js +++ b/frappe/public/js/frappe/list/base_list.js @@ -435,7 +435,10 @@ frappe.views.BaseList = class BaseList { this.$result[0].style.removeProperty("height"); // place it at the footer of the page - const resultContainerHeight = window.innerHeight - this.$paging_area.get(0).offsetHeight; + let resultContainerHeight = window.innerHeight - this.$paging_area.get(0).offsetHeight; + if (!frappe.is_mobile()) { + resultContainerHeight = resultContainerHeight - this.$result.get(0).offsetTop; + } this.$result.parent(".result-container").css({ height: resultContainerHeight - (frappe.is_mobile() ? 100 : 0) + "px", }); From c41ba40c6297cb861cf7e8995016e2e9a3542ab4 Mon Sep 17 00:00:00 2001 From: sokumon Date: Wed, 14 Jan 2026 00:12:00 +0530 Subject: [PATCH 025/263] refactor: sidebar expand when active element is inside it --- frappe/public/js/frappe/ui/sidebar/sidebar.js | 50 ++++++++----------- 1 file changed, 21 insertions(+), 29 deletions(-) diff --git a/frappe/public/js/frappe/ui/sidebar/sidebar.js b/frappe/public/js/frappe/ui/sidebar/sidebar.js index c28fc69890..3a1ebcaf36 100644 --- a/frappe/public/js/frappe/ui/sidebar/sidebar.js +++ b/frappe/public/js/frappe/ui/sidebar/sidebar.js @@ -155,41 +155,33 @@ 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_if_needed(); + this.expand_parent_section(); } } - expand_parent_section_if_needed() { + 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; + } + }); - // Check if the active item is inside a nested container (child of a Section Break) - // active_item is .standard-sidebar-item, we need to check its container - const $item_container = this.active_item.closest(".sidebar-item-container"); - if ($item_container.length === 0) return; - - const $nested_container = $item_container.parent(".nested-container"); - if ($nested_container.length === 0) return; - - // Find the parent Section Break container - const $section_break_container = $nested_container.closest(".section-item"); - if ($section_break_container.length === 0) return; - - // Find the Section Break item instance that contains this nested item - const section_label = $section_break_container.attr("item-name"); - if (!section_label) return; - - // Find the SectionBreakSidebarItem instance - for (let item of this.items) { - if ( - item.item && - item.item.type === "Section Break" && - item.item.label === section_label - ) { - // Expand the section break if it's collapsed - if (item.collapsed) { - item.open(); + if (active_section) { + let section = this.get_item(active_section); + if (section) { + if (section.collapsed) { + section.open(); } - break; + } + } + } + + get_item(name) { + for (let item of this.items) { + if (item.item.label === name) { + return item; } } } From bfb8ccb628895657fa982d059e2f107157080cf8 Mon Sep 17 00:00:00 2001 From: git-avc Date: Tue, 13 Jan 2026 23:01:16 +0100 Subject: [PATCH 026/263] feat: let's control alignment --- frappe/core/doctype/docfield/docfield.json | 8 ++++++++ frappe/public/js/frappe/form/controls/base_input.js | 8 +++++++- frappe/public/js/frappe/form/controls/data.js | 4 ++++ 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/frappe/core/doctype/docfield/docfield.json b/frappe/core/doctype/docfield/docfield.json index b2c1b0d262..b089fce2c2 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\"], doc.fieldtype)", + "fieldname": "alignment", + "fieldtype": "Select", + "label": "Alignment", + "options": "\nLeft\nCenter\nRight" + }, { "fieldname": "column_break_38", "fieldtype": "Column Break" diff --git a/frappe/public/js/frappe/form/controls/base_input.js b/frappe/public/js/frappe/form/controls/base_input.js index beab7e96bd..bf8d2b0e32 100644 --- a/frappe/public/js/frappe/form/controls/base_input.js +++ b/frappe/public/js/frappe/form/controls/base_input.js @@ -165,7 +165,13 @@ 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 for Data, Int, Float fields + if (this.df.alignment && ["Data", "Int", "Float"].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..78b22777cc 100644 --- a/frappe/public/js/frappe/form/controls/data.js +++ b/frappe/public/js/frappe/form/controls/data.js @@ -251,6 +251,10 @@ 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 if specified + if (this.df.alignment) { + this.$input.css("text-align", this.df.alignment.toLowerCase()); + } } set_input(value) { this.last_value = this.value; From 59c3a02f28bef1adcd2845831660040f2bccaecc Mon Sep 17 00:00:00 2001 From: git-avc Date: Tue, 13 Jan 2026 23:43:09 +0100 Subject: [PATCH 027/263] fix: add Currency fieldtype --- frappe/core/doctype/docfield/docfield.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/docfield/docfield.json b/frappe/core/doctype/docfield/docfield.json index b089fce2c2..3acf1d5ea8 100644 --- a/frappe/core/doctype/docfield/docfield.json +++ b/frappe/core/doctype/docfield/docfield.json @@ -477,7 +477,7 @@ "options": "JS" }, { - "depends_on": "eval:in_list([\"Data\", \"Int\", \"Float\"], doc.fieldtype)", + "depends_on": "eval:in_list([\"Data\", \"Int\", \"Float\", \"Currency\", \"Percent\"], doc.fieldtype)", "fieldname": "alignment", "fieldtype": "Select", "label": "Alignment", From e2cc46962eb14e228224907a59f797931e521410 Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Tue, 13 Jan 2026 23:49:25 +0000 Subject: [PATCH 028/263] revert: default initial view to dayGridMonth --- frappe/public/js/frappe/views/calendar/calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/views/calendar/calendar.js b/frappe/public/js/frappe/views/calendar/calendar.js index 8482cfbc22..cef8b8a9c9 100644 --- a/frappe/public/js/frappe/views/calendar/calendar.js +++ b/frappe/public/js/frappe/views/calendar/calendar.js @@ -253,7 +253,7 @@ frappe.views.Calendar = class Calendar { defaults.meridiem = "false"; this.cal_options = { plugins: frappe.FullCalendar.Plugins, - initialView: defaults.initialView || "timeGridWeek", + initialView: defaults.initialView || "dayGridMonth", locale: frappe.boot.lang, firstDay: 1, headerToolbar: { From 14eaff022c2651380c681cedf12c81363871c27d Mon Sep 17 00:00:00 2001 From: sokumon Date: Wed, 14 Jan 2026 13:20:03 +0530 Subject: [PATCH 029/263] fix: use allowed pages to check perms --- frappe/boot.py | 6 +++--- .../desk/doctype/workspace_sidebar/workspace_sidebar.py | 9 ++------- 2 files changed, 5 insertions(+), 10 deletions(-) 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/desk/doctype/workspace_sidebar/workspace_sidebar.py b/frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py index d6390ca036..f3448894b9 100644 --- a/frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py +++ b/frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py @@ -77,7 +77,7 @@ class WorkspaceSidebar(Document): else: frappe.throw(_("You need to be Workspace Manager to delete a public workspace.")) - def is_item_allowed(self, name, item_type): + def is_item_allowed(self, name, item_type, allowed_workspaces): if frappe.session.user == "Administrator": return True @@ -100,12 +100,7 @@ class WorkspaceSidebar(Document): if item_type == "url": return True if item_type == "workspace": - try: - workspace = frappe.get_cached_doc("Workspace", name) - if workspace.module in self.allowed_modules: - return True - except frappe.DoesNotExistError: - return False + return name in allowed_workspaces def get_cached(self, cache_key, fallback_fn): value = frappe.cache.get_value(cache_key, user=frappe.session.user) From ea3b6a04a35413af463be87836d76d9f9b813592 Mon Sep 17 00:00:00 2001 From: sokumon Date: Wed, 14 Jan 2026 13:45:53 +0530 Subject: [PATCH 030/263] fix: close notifications correctly --- .../public/js/frappe/ui/notifications/notifications.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index 808b48b592..8b6a5066ab 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -4,7 +4,11 @@ frappe.ui.Notifications = class Notifications { constructor(opts) { this.tabs = {}; this.notification_settings = frappe.boot.notification_settings; - this.full_height = opts?.full_height || true; + if (!opts?.full_height) { + this.full_height = true; + } + this.full_height = opts?.full_height; + this.wrapper = opts?.wrapper || $(".standard-items-sections"); this.make(); } @@ -52,8 +56,10 @@ frappe.ui.Notifications = class Notifications { ${frappe.utils.icon("x")} `) .on("click", (e) => { - if (!this.full_height) { + if (this.full_height) { this.dropdown.addClass("hidden"); + } else { + this.dropdown_list.addClass("hidden"); } }) .appendTo(this.header_actions) From f932560251959166a840d691e04670a91320b9f1 Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Wed, 14 Jan 2026 17:14:42 +0100 Subject: [PATCH 031/263] fix: keyboard shortcuts for prev/next record --- frappe/public/js/frappe/form/form.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js index 2eadf88417..897dc24cf9 100644 --- a/frappe/public/js/frappe/form/form.js +++ b/frappe/public/js/frappe/form/form.js @@ -139,7 +139,7 @@ frappe.ui.form.Form = class FrappeForm { add_form_keyboard_shortcuts() { // Navigate to next record frappe.ui.keys.add_shortcut({ - shortcut: "shift+ctrl+>", + shortcut: "shift+ctrl+right", action: () => this.navigate_records(0), page: this.page, description: __("Go to next record"), @@ -149,7 +149,7 @@ frappe.ui.form.Form = class FrappeForm { // Navigate to previous record frappe.ui.keys.add_shortcut({ - shortcut: "shift+ctrl+<", + shortcut: "shift+ctrl+left", action: () => this.navigate_records(1), page: this.page, description: __("Go to previous record"), From 061b5579ef92329d1d317fc0254e1e0c76e41f96 Mon Sep 17 00:00:00 2001 From: "ALB.Leach" Date: Thu, 15 Jan 2026 13:57:21 +0700 Subject: [PATCH 032/263] fix: sidebar editor fixes (#35966) --- frappe/public/js/frappe/ui/sidebar/sidebar_editor.js | 1 + frappe/public/js/frappe/ui/sidebar/sidebar_item.js | 2 +- frappe/public/scss/desk/sidebar.scss | 7 ++++--- 3 files changed, 6 insertions(+), 4 deletions(-) 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_item.js b/frappe/public/js/frappe/ui/sidebar/sidebar_item.js index 19e12a04be..f669d658ff 100644 --- a/frappe/public/js/frappe/ui/sidebar/sidebar_item.js +++ b/frappe/public/js/frappe/ui/sidebar/sidebar_item.js @@ -177,8 +177,8 @@ frappe.ui.sidebar_item.TypeSectionBreak = class SectionBreakSidebarItem extends this.full_template = $(this.wrapper); } make() { - if (this.item.nested_items.length == 0) return; super.make(); + if (!this.item.nested_items || this.item.nested_items.length == 0) return; this.add_items(); this.toggle_on_collapse(); this.enable_collapsible(this.item, this.full_template); diff --git a/frappe/public/scss/desk/sidebar.scss b/frappe/public/scss/desk/sidebar.scss index 0a0de5d260..0f6740c771 100644 --- a/frappe/public/scss/desk/sidebar.scss +++ b/frappe/public/scss/desk/sidebar.scss @@ -252,7 +252,6 @@ display: none; } .section-break { - flex: 0 0 auto !important; color: var(--ink-gray-5) !important; margin-left: 7px; gap: 0px !important; @@ -270,8 +269,7 @@ .standard-sidebar-item:hover { & .sidebar-item-edit-controls { visibility: visible; - display: flex; - gap: 6px; + width: auto; } } .collapse-sidebar-link { @@ -283,6 +281,9 @@ } .sidebar-item-edit-controls { visibility: hidden; + display: flex; + gap: 6px; + width: 0; } .standard-sidebar-item[data-name="add-sidebar-item"] { margin-top: 5px; From 03558f4848710d278afc66978ed6bc10a621752b Mon Sep 17 00:00:00 2001 From: Diptanil Saha Date: Thu, 15 Jan 2026 12:31:01 +0530 Subject: [PATCH 033/263] chore(boilerplate): fixed db migration link (#35967) --- frappe/utils/boilerplate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/utils/boilerplate.py b/frappe/utils/boilerplate.py index 31fa50774c..89d91862c4 100644 --- a/frappe/utils/boilerplate.py +++ b/frappe/utils/boilerplate.py @@ -818,7 +818,7 @@ jobs: patches_template = """[pre_model_sync] # Patches added in this section will be executed before doctypes are migrated -# Read docs to understand patches: https://frappeframework.com/docs/v14/user/en/database-migrations +# Read docs to understand patches: https://docs.frappe.io/framework/user/en/database-migrations [post_model_sync] # Patches added in this section will be executed after doctypes are migrated""" From c63391b6a733c14a672a56bf41cb273a42f1281e Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Thu, 15 Jan 2026 13:03:07 +0530 Subject: [PATCH 034/263] fix: init proper empty session Signed-off-by: Akhil Narang --- frappe/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: From 740b65ff32a64a974392841d6eff9eeb229337fd Mon Sep 17 00:00:00 2001 From: Markus Lobedann Date: Thu, 15 Jan 2026 09:19:29 +0100 Subject: [PATCH 035/263] fix: update pyngrok dependency version to 7.5.0 6.0.0 doesn't work with unpaid accounts anymore --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 131071678c..5eb94c3b44 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -98,7 +98,7 @@ Repository = "https://github.com/frappe/frappe.git" [project.optional-dependencies] dev = [ - "pyngrok~=6.0.0", + "pyngrok~=7.5.0", "watchdog~=6.0.0", "responses==0.23.1", # typechecking @@ -148,7 +148,7 @@ skip_namespaces = [ [tool.bench.dev-dependencies] coverage = "~=7.10.0" Faker = "~=18.10.1" -pyngrok = "~=6.0.0" +pyngrok = "~=7.5.0" unittest-xml-reporting = "~=3.2.0" watchdog = "~=6.0.0" hypothesis = "~=6.77.0" From 9af7187a72a1729214955174b0205fcf17f3582d Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Thu, 15 Jan 2026 15:13:05 +0530 Subject: [PATCH 036/263] fix(grid): border overflow issue --- frappe/public/scss/common/grid.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/public/scss/common/grid.scss b/frappe/public/scss/common/grid.scss index d7fed36002..c9cca2dd86 100644 --- a/frappe/public/scss/common/grid.scss +++ b/frappe/public/scss/common/grid.scss @@ -8,6 +8,7 @@ color: var(--text-color); min-height: 75px; background-color: var(--subtle-accent); + overflow-y: hidden; } .form-grid.error { From ed48aa9b60f4c01c92d2f6fe29bbb86bcc3e77b0 Mon Sep 17 00:00:00 2001 From: diptanilsaha Date: Thu, 15 Jan 2026 12:35:05 +0530 Subject: [PATCH 037/263] chore(hooks): develop_version bump --- frappe/hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/hooks.py b/frappe/hooks.py index 62801f33bb..a977f39529 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -8,7 +8,7 @@ app_publisher = "Frappe Technologies" app_description = "Full stack web framework with Python, Javascript, MariaDB, Redis, Node" app_license = "MIT" app_logo_url = "/assets/frappe/images/frappe-framework-logo.svg" -develop_version = "15.x.x-develop" +develop_version = "17.x.x-develop" app_home = "/app/build" app_email = "developers@frappe.io" From 137b94a4aad2dbae4c26df65dfa0ca3f6a1fd532 Mon Sep 17 00:00:00 2001 From: sokumon Date: Thu, 15 Jan 2026 17:27:14 +0530 Subject: [PATCH 038/263] fix: show module sidebar --- frappe/public/js/frappe/ui/sidebar/sidebar.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/public/js/frappe/ui/sidebar/sidebar.js b/frappe/public/js/frappe/ui/sidebar/sidebar.js index 3a1ebcaf36..c12410c4d9 100644 --- a/frappe/public/js/frappe/ui/sidebar/sidebar.js +++ b/frappe/public/js/frappe/ui/sidebar/sidebar.js @@ -475,6 +475,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); From a98e94caf12a065cb71a89f7b7306339ce1ba7c4 Mon Sep 17 00:00:00 2001 From: Shllokkk Date: Thu, 15 Jan 2026 17:50:27 +0530 Subject: [PATCH 039/263] feat(doctype): generate controller_tree.js boilerplate for tree doctypes --- frappe/core/doctype/doctype/boilerplate/controller_tree.js | 5 +++++ frappe/core/doctype/doctype/doctype.py | 3 +++ frappe/modules/utils.py | 7 ++++++- 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 frappe/core/doctype/doctype/boilerplate/controller_tree.js 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..1b9f6b50f8 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" diff --git a/frappe/modules/utils.py b/frappe/modules/utils.py index 64d2463c2f..404540a32d 100644 --- a/frappe/modules/utils.py +++ b/frappe/modules/utils.py @@ -345,6 +345,7 @@ def get_app_publisher(module: str) -> str: def make_boilerplate(template: str, doc: "Document" | "frappe._dict", opts: dict | "frappe._dict" = None): + # print(template, "template_file_path \n\n\n") target_path = get_doc_path(doc.module, doc.doctype, doc.name) template_name = template.replace("controller", scrub(doc.name)) if template_name.endswith("._py"): @@ -354,6 +355,8 @@ def make_boilerplate(template: str, doc: "Document" | "frappe._dict", opts: dict get_module_path("core"), "doctype", scrub(doc.doctype), "boilerplate", template ) + + if os.path.exists(target_file_path): print(f"{target_file_path} already exists, skipping...") return @@ -400,7 +403,7 @@ def make_boilerplate(template: str, doc: "Document" | "frappe._dict", opts: dict """ controller_body = indent(dedent(controller_body), "\t") - + # print(source, "source \n\n\n") with open(target_file_path, "w") as target, open(template_file_path) as source: template = source.read() controller_file_content = cstr(template).format( @@ -413,6 +416,8 @@ def make_boilerplate(template: str, doc: "Document" | "frappe._dict", opts: dict **opts, custom_controller=controller_body, ) + print("template_file_path \n\n\n", controller_file_content) + # print(controller_file_content) target.write(frappe.as_unicode(controller_file_content)) From eda8edc80824ebef570e87d246f27f90ea913919 Mon Sep 17 00:00:00 2001 From: Shllokkk Date: Thu, 15 Jan 2026 20:12:02 +0530 Subject: [PATCH 040/263] refactor: utils.py --- frappe/modules/utils.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/frappe/modules/utils.py b/frappe/modules/utils.py index 404540a32d..cf2745e64d 100644 --- a/frappe/modules/utils.py +++ b/frappe/modules/utils.py @@ -345,7 +345,6 @@ def get_app_publisher(module: str) -> str: def make_boilerplate(template: str, doc: "Document" | "frappe._dict", opts: dict | "frappe._dict" = None): - # print(template, "template_file_path \n\n\n") target_path = get_doc_path(doc.module, doc.doctype, doc.name) template_name = template.replace("controller", scrub(doc.name)) if template_name.endswith("._py"): @@ -355,8 +354,6 @@ def make_boilerplate(template: str, doc: "Document" | "frappe._dict", opts: dict get_module_path("core"), "doctype", scrub(doc.doctype), "boilerplate", template ) - - if os.path.exists(target_file_path): print(f"{target_file_path} already exists, skipping...") return @@ -403,7 +400,7 @@ def make_boilerplate(template: str, doc: "Document" | "frappe._dict", opts: dict """ controller_body = indent(dedent(controller_body), "\t") - # print(source, "source \n\n\n") + with open(target_file_path, "w") as target, open(template_file_path) as source: template = source.read() controller_file_content = cstr(template).format( @@ -417,7 +414,6 @@ def make_boilerplate(template: str, doc: "Document" | "frappe._dict", opts: dict custom_controller=controller_body, ) print("template_file_path \n\n\n", controller_file_content) - # print(controller_file_content) target.write(frappe.as_unicode(controller_file_content)) From ec94433e6a0ceef593ae0b8900d142a903bffb0f Mon Sep 17 00:00:00 2001 From: sokumon Date: Thu, 15 Jan 2026 21:04:19 +0530 Subject: [PATCH 041/263] fix: notification bell shouldn't flicker --- frappe/public/js/frappe/ui/notifications/notifications.js | 8 ++------ frappe/public/js/frappe/ui/sidebar/sidebar.js | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/frappe/public/js/frappe/ui/notifications/notifications.js b/frappe/public/js/frappe/ui/notifications/notifications.js index 8b6a5066ab..f2ca85decb 100644 --- a/frappe/public/js/frappe/ui/notifications/notifications.js +++ b/frappe/public/js/frappe/ui/notifications/notifications.js @@ -4,10 +4,7 @@ frappe.ui.Notifications = class Notifications { constructor(opts) { this.tabs = {}; this.notification_settings = frappe.boot.notification_settings; - if (!opts?.full_height) { - this.full_height = true; - } - this.full_height = opts?.full_height; + this.full_height = opts?.full_height || false; this.wrapper = opts?.wrapper || $(".standard-items-sections"); this.make(); @@ -155,9 +152,8 @@ frappe.ui.Notifications = class Notifications { const isInsideNotificationBtn = $(e.target).closest(".standard-items-sections .sidebar-notification").length > 0; const isInsideDropdown = $(e.target).closest(".notifications-list").length > 0; - if (!isInsideNotificationBtn && !isInsideDropdown) { - if (!full_height) { + if (full_height) { dropdown.addClass("hidden"); } } diff --git a/frappe/public/js/frappe/ui/sidebar/sidebar.js b/frappe/public/js/frappe/ui/sidebar/sidebar.js index c12410c4d9..205f0766ef 100644 --- a/frappe/public/js/frappe/ui/sidebar/sidebar.js +++ b/frappe/public/js/frappe/ui/sidebar/sidebar.js @@ -332,7 +332,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) { From 354f8337e9cc08262ab0b8662e31016e7e4ff970 Mon Sep 17 00:00:00 2001 From: Shllokkk Date: Thu, 15 Jan 2026 22:43:03 +0530 Subject: [PATCH 042/263] fix(doctype): remove debug print statement --- frappe/modules/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/modules/utils.py b/frappe/modules/utils.py index cf2745e64d..64d2463c2f 100644 --- a/frappe/modules/utils.py +++ b/frappe/modules/utils.py @@ -413,7 +413,6 @@ def make_boilerplate(template: str, doc: "Document" | "frappe._dict", opts: dict **opts, custom_controller=controller_body, ) - print("template_file_path \n\n\n", controller_file_content) target.write(frappe.as_unicode(controller_file_content)) From 3f9957e2446e712a7a264db25539ff148eaa93d3 Mon Sep 17 00:00:00 2001 From: SID <158349177+0xsid0703@users.noreply.github.com> Date: Thu, 15 Jan 2026 11:05:19 -0800 Subject: [PATCH 043/263] fix: Translate dashboard chart labels (fixes #35941) (#35952) * fix: translate dashboard chart labels (fixes #35941) - Translate chart_name when setting chart.label in dashboard_view.js - Translate chart name when adding existing charts to dashboard - Translate chart_name fallback in ChartDialog process_data This ensures dashboard chart labels are properly translated based on user's language preference. * fix: translate chart dataset names in backend (fixes #35941) - Translate chart.name when used as dataset name in get_chart_config - Translate chart.name when used as dataset name in get_group_by_chart_config This ensures chart dataset names (used in legends/tooltips) are also translated, complementing the frontend widget label translation fix. --- frappe/desk/doctype/dashboard_chart/dashboard_chart.py | 4 ++-- frappe/public/js/frappe/views/dashboard/dashboard_view.js | 4 ++-- frappe/public/js/frappe/widgets/widget_dialog.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py index 1152d9215f..64328dfc43 100644 --- a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py +++ b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py @@ -218,7 +218,7 @@ def get_chart_config(chart, filters, timespan, timegrain, from_date, to_date): else get_period(r[0], timegrain) for r in result ], - "datasets": [{"name": chart.name, "values": [r[1] for r in result]}], + "datasets": [{"name": _(chart.name), "values": [r[1] for r in result]}], } @@ -292,7 +292,7 @@ def get_group_by_chart_config(chart, filters) -> dict | None: if data: return { "labels": [item.get("name", "Not Specified") for item in data], - "datasets": [{"name": chart.name, "values": [item["count"] for item in data]}], + "datasets": [{"name": _(chart.name), "values": [item["count"] for item in data]}], } return None diff --git a/frappe/public/js/frappe/views/dashboard/dashboard_view.js b/frappe/public/js/frappe/views/dashboard/dashboard_view.js index 6b5b36a2ea..2adaee49fb 100644 --- a/frappe/public/js/frappe/views/dashboard/dashboard_view.js +++ b/frappe/public/js/frappe/views/dashboard/dashboard_view.js @@ -124,7 +124,7 @@ frappe.views.DashboardView = class DashboardView extends frappe.views.ListView { ? JSON.parse(settings.chart_config) : {}; this.charts.map((chart) => { - chart.label = chart.chart_name; + chart.label = __(chart.chart_name); chart.chart_settings = this.dashboard_chart_settings[chart.chart_name] || {}; }); this.render_dashboard_charts(); @@ -464,7 +464,7 @@ frappe.views.DashboardView = class DashboardView extends frappe.views.ListView { } else { this.chart_group.new_widget.on_create({ chart_name: chart.chart, - label: chart.chart, + label: __(chart.chart), name: chart.chart, }); } diff --git a/frappe/public/js/frappe/widgets/widget_dialog.js b/frappe/public/js/frappe/widgets/widget_dialog.js index 0a5b4a24f3..6884cfef1e 100644 --- a/frappe/public/js/frappe/widgets/widget_dialog.js +++ b/frappe/public/js/frappe/widgets/widget_dialog.js @@ -147,7 +147,7 @@ class ChartDialog extends WidgetDialog { } process_data(data) { - data.label = data.label ? data.label : data.chart_name; + data.label = data.label ? data.label : __(data.chart_name); return data; } } From 0522c40501767ca88e998a4c92906a53bf15d286 Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Thu, 15 Jan 2026 21:56:34 +0100 Subject: [PATCH 044/263] fix: return CommunicationComposer instance in email_doc method (#35992) --- frappe/public/js/frappe/form/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js index 2eadf88417..1ce2a9be0f 100644 --- a/frappe/public/js/frappe/form/form.js +++ b/frappe/public/js/frappe/form/form.js @@ -1400,7 +1400,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, From 345e9ed503ba4978457b6f80829c4d84dee0dfe4 Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Fri, 16 Jan 2026 00:33:25 +0100 Subject: [PATCH 045/263] feat(version): add HTML diff view for multiline field changes (#35837) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- frappe/core/doctype/version/test_version.py | 129 +++++++++++++++++- frappe/core/doctype/version/version.js | 31 +++-- frappe/core/doctype/version/version.py | 53 +++++++ frappe/core/doctype/version/version_view.html | 63 +++++++++ frappe/public/scss/common/css_variables.scss | 5 +- frappe/public/scss/desk/dark.scss | 1 + 6 files changed, 268 insertions(+), 14 deletions(-) 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("alert", result) + self.assertNotIn("
injected", result) + # Escaped versions should be present + self.assertIn("<script>", result) + self.assertIn("<div>", result) + + def test_should_generate_html_diff_multiline(self): + """Test should_generate_html_diff returns True for multiline text.""" + self.assertTrue(_should_generate_html_diff("line1\nline2", "line1\nmodified")) + self.assertTrue(_should_generate_html_diff("single", "multi\nline")) + self.assertTrue(_should_generate_html_diff("multi\nline", "single")) + + def test_should_generate_html_diff_long_text(self): + """Test should_generate_html_diff returns True for text > 80 characters.""" + self.assertTrue(_should_generate_html_diff("a" * 81, "b")) + self.assertTrue(_should_generate_html_diff("a", "b" * 81)) + self.assertTrue(_should_generate_html_diff("a" * 81, "b" * 81)) + + def test_should_generate_html_diff_short_text(self): + """Test should_generate_html_diff returns False for short single-line text.""" + self.assertFalse(_should_generate_html_diff("short", "text")) + self.assertFalse(_should_generate_html_diff("a" * 80, "b" * 80)) # Exactly 80 chars + + def test_should_generate_html_diff_empty_values(self): + """Test should_generate_html_diff returns False when either value is empty.""" + self.assertFalse(_should_generate_html_diff("", "short")) + self.assertFalse(_should_generate_html_diff("short", "")) + self.assertFalse(_should_generate_html_diff("", "")) + # Even long/multiline text returns False if the other value is empty + self.assertFalse(_should_generate_html_diff("", "a" * 81)) + self.assertFalse(_should_generate_html_diff("multi\nline", "")) + + def test_as_string_converts_values(self): + """Test _as_string converts values to strings correctly.""" + self.assertEqual(_as_string("text"), "text") + self.assertEqual(_as_string(None), "") + self.assertEqual(_as_string(""), "") + self.assertEqual(_as_string(0), "0") + + class TestVersion(IntegrationTestCase): + def test_onload_generates_html_diffs_for_multiline(self): + """Test onload generates HTML diffs for multiline changes.""" + version = frappe.get_doc( + doctype="Version", + ref_doctype="ToDo", + docname="test-doc", + data=frappe.as_json({"changed": [["description", "line1\nline2", "line1\nmodified"]]}), + ) + + version.onload() + + html_diffs = version.get_onload().get("html_diffs") + self.assertIsNotNone(html_diffs) + self.assertIn("description", html_diffs) + self.assertIn(" 80 characters.""" + version = frappe.get_doc( + doctype="Version", + ref_doctype="ToDo", + docname="test-doc", + data=frappe.as_json({"changed": [["notes", "x" * 81, "y" * 81]]}), + ) + + version.onload() + + html_diffs = version.get_onload().get("html_diffs") + self.assertIsNotNone(html_diffs) + self.assertIn("notes", html_diffs) + + def test_onload_no_html_diffs_for_simple_changes(self): + """Test onload doesn't generate HTML diffs for simple short changes.""" + version = frappe.get_doc( + doctype="Version", + ref_doctype="ToDo", + docname="test-doc", + data=frappe.as_json({"changed": [["status", "Open", "Closed"]]}), + ) + + version.onload() + + html_diffs = version.get_onload().get("html_diffs") + self.assertIsNone(html_diffs) + + def test_onload_handles_empty_data(self): + """Test onload handles empty or missing data gracefully.""" + version = frappe.get_doc( + doctype="Version", + ref_doctype="ToDo", + docname="test-doc", + data=None, + ) + + # Should not raise an error + version.onload() + self.assertIsNone(version.get_onload().get("html_diffs")) + + version.data = frappe.as_json({"changed": []}) + version.onload() + self.assertIsNone(version.get_onload().get("html_diffs")) + def test_get_diff(self): frappe.set_user("Administrator") test_records = make_test_objects("Event", reset=True) diff --git a/frappe/core/doctype/version/version.js b/frappe/core/doctype/version/version.js index 1e26e5f748..8fd83bc15f 100644 --- a/frappe/core/doctype/version/version.js +++ b/frappe/core/doctype/version/version.js @@ -1,12 +1,23 @@ -frappe.ui.form.on("Version", "refresh", function (frm) { - $( - frappe.render_template("version_view", { doc: frm.doc, data: JSON.parse(frm.doc.data) }) - ).appendTo(frm.fields_dict.table_html.$wrapper.empty()); - - frm.add_custom_button(__("Show all Versions"), function () { - frappe.set_route("List", "Version", { - ref_doctype: frm.doc.ref_doctype, - docname: frm.doc.docname, +frappe.ui.form.on("Version", { + refresh: function (frm) { + frm.add_custom_button(__("Show all Versions"), function () { + frappe.set_route("List", "Version", { + ref_doctype: frm.doc.ref_doctype, + docname: frm.doc.docname, + }); }); - }); + + frm.trigger("render_version_view"); + }, + + render_version_view: async function (frm) { + await frappe.model.with_doctype(frm.doc.ref_doctype); + + $( + frappe.render_template("version_view", { + doc: frm.doc, + data: JSON.parse(frm.doc.data), + }) + ).appendTo(frm.fields_dict.table_html.$wrapper.empty()); + }, }); diff --git a/frappe/core/doctype/version/version.py b/frappe/core/doctype/version/version.py index d3ee8ca22d..7ea6f2f039 100644 --- a/frappe/core/doctype/version/version.py +++ b/frappe/core/doctype/version/version.py @@ -1,6 +1,7 @@ # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors # License: MIT. See LICENSE +import difflib import json import frappe @@ -74,6 +75,29 @@ class Version(Document): def get_data(self): return json.loads(self.data) + def onload(self): + """Generate HTML diffs for multiline changes on document load.""" + if not self.data: + return + + data = self.get_data() + changed = data.get("changed", []) + if not changed: + return + + html_diffs = {} + for item in changed: + if len(item) >= 3: + fieldname, old_str, new_str = item[0], _as_string(item[1]), _as_string(item[2]) + if not _should_generate_html_diff(old_str, new_str): + continue + html_diff = _generate_html_diff(old_str, new_str) + if html_diff: + html_diffs[fieldname] = html_diff + + if html_diffs: + self.set_onload("html_diffs", html_diffs) + def get_diff(old, new, for_child=False, compare_cancelled=False): """Get diff between 2 document objects @@ -203,3 +227,32 @@ def get_diff(old, new, for_child=False, compare_cancelled=False): def on_doctype_update(): frappe.db.add_index("Version", ["ref_doctype", "docname"]) + + +def _generate_html_diff(old_str: str, new_str: str) -> str | None: + """Generate HTML diff for the given old and new strings.""" + old_lines = old_str.splitlines(keepends=True) + new_lines = new_str.splitlines(keepends=True) + + differ = difflib.HtmlDiff(wrapcolumn=80) + html_diff = differ.make_table( + old_lines, + new_lines, + fromdesc=frappe._("Original"), + todesc=frappe._("New"), + context=True, + numlines=3, + ) + return html_diff + + +def _should_generate_html_diff(old_str: str, new_str: str) -> bool: + """Determine if HTML diff should be generated for the given values.""" + return ( + old_str and new_str and ("\n" in old_str or "\n" in new_str or len(old_str) > 80 or len(new_str) > 80) + ) + + +def _as_string(value: str | None) -> str: + """Convert the given value to a string.""" + return cstr(value) if value is not None else "" diff --git a/frappe/core/doctype/version/version_view.html b/frappe/core/doctype/version/version_view.html index 7560118174..bbd63df849 100644 --- a/frappe/core/doctype/version/version_view.html +++ b/frappe/core/doctype/version/version_view.html @@ -1,3 +1,52 @@ +
{% if data.comment %}

{{ __("Comment") + " (" + data.comment_type }})

@@ -5,8 +54,19 @@ {% endif %} {% const getEscapedValue = (v) => v === null ? "null" : frappe.utils.escape_html(v) %} +{% const htmlDiffs = (doc.__onload && doc.__onload.html_diffs) || {} %} {% if data.changed && data.changed.length %}

{{ __("Values Changed") }}

+{% for item in data.changed %} + {% if htmlDiffs[item[0]] %} +
+
{{ frappe.meta.get_label(doc.ref_doctype, item[0]) }}
+
{{ htmlDiffs[item[0]] }}
+
+ {% endif %} +{% endfor %} +{% var hasSimpleChanges = data.changed.some(item => !htmlDiffs[item[0]]) %} +{% if hasSimpleChanges %} @@ -17,15 +77,18 @@ {% for item in data.changed %} + {% if !htmlDiffs[item[0]] %} + {% endif %} {% endfor %}
{{ frappe.meta.get_label(doc.ref_doctype, item[0]) }} {{ getEscapedValue(item[1]) }} {{ getEscapedValue(item[2]) }}
{% endif %} +{% endif %} {% var _keys = ["added", "removed"]; %} {% for key in _keys %} diff --git a/frappe/public/scss/common/css_variables.scss b/frappe/public/scss/common/css_variables.scss index 1ae33c1a01..0fd3fb902c 100644 --- a/frappe/public/scss/common/css_variables.scss +++ b/frappe/public/scss/common/css_variables.scss @@ -150,8 +150,9 @@ $disabled-input-height: 22px; --switch-bg: var(--gray-300); // "diff" colors - --diff-added: var(--green-100); - --diff-removed: var(--red-100); + --diff-added: var(--green-200); + --diff-removed: var(--red-200); + --diff-changed: var(--blue-200); --right-arrow-svg: url("data: image/svg+xml;utf8, "); --left-arrow-svg: url("data: image/svg+xml;utf8, "); diff --git a/frappe/public/scss/desk/dark.scss b/frappe/public/scss/desk/dark.scss index bb0cf9c2e5..aa4aabf48c 100644 --- a/frappe/public/scss/desk/dark.scss +++ b/frappe/public/scss/desk/dark.scss @@ -116,6 +116,7 @@ $check-icon-dark: url("data:image/svg+xml, Date: Fri, 16 Jan 2026 04:35:11 +0100 Subject: [PATCH 046/263] fix: check column type and df before accessing fieldname in get_left_html - Add check for col.type == 'Field' before accessing col.df.fieldname - Use optional chaining to safely check if col.df exists - Prevents crash when non-Field columns (Status/Tag) are at index 4 - Fixes #36002 --- frappe/public/js/frappe/list/list_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index a802edce4c..87dc556b95 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -800,7 +800,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { for (let i = 0; i < this.columns.length; i++) { let col = this.columns[i]; - if (i == 4 && !doc[col.df.fieldname] && doc[col.df.fieldname] != 0) { + if (i == 4 && col.type == "Field" && col.df?.fieldname && !doc[col.df.fieldname] && doc[col.df.fieldname] != 0) { has_value_in_second_column = false; } From 9b61504b9bf662c61ad16c86270314cd5e4e1c0a Mon Sep 17 00:00:00 2001 From: MochaMind Date: Fri, 16 Jan 2026 11:09:10 +0530 Subject: [PATCH 047/263] fix: Hungarian translations (#35934) --- frappe/locale/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po index 2497e3c854..ffd24279ff 100644 --- a/frappe/locale/hu.po +++ b/frappe/locale/hu.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-12-21 09:35+0000\n" -"PO-Revision-Date: 2026-01-05 23:50\n" +"PO-Revision-Date: 2026-01-14 01:41\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' From 46daca0dd599d0a708ffe2cb24343e6c4a94a838 Mon Sep 17 00:00:00 2001 From: sokumon Date: Fri, 16 Jan 2026 02:54:56 +0530 Subject: [PATCH 048/263] fix(mobile): desktop modal design --- frappe/desk/page/desktop/desktop.css | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.css b/frappe/desk/page/desktop/desktop.css index 005f98a956..a28dbe26e6 100644 --- a/frappe/desk/page/desktop/desktop.css +++ b/frappe/desk/page/desktop/desktop.css @@ -234,7 +234,7 @@ } .modal-body .icons{ margin-top: 0px; - place-self: start; + place-self: anchor-center; & .desktop-icon{ height: 126px; width: 127px; @@ -395,7 +395,9 @@ } .desktop-modal-body { - width: 90vw; + width: calc(100vw - 20px); + padding-left: 0px !important; + padding-right: 0px !important; > .icons-container { width: 100%; overflow: hidden !important; @@ -404,10 +406,8 @@ padding: 0; > .icons { - position: relative; - right: 6%; - column-gap: 4px; - row-gap: 8px; + column-gap: 6px; + row-gap: 6px; @media screen and (max-width: 380px) { --desktop-icon-container: 100px; @@ -463,4 +463,7 @@ [data-theme="dark"] .desktop-edit:hover{ opacity: 0.8; transition: opacity 0.3s; +} +.desktop-navbar-modal-search:hover{ + outline: 1px solid var(--surface-gray-3); } \ No newline at end of file From 04eb2517cd6aa243ef092dfa29ef7323c003a5f3 Mon Sep 17 00:00:00 2001 From: sokumon Date: Fri, 16 Jan 2026 14:42:15 +0530 Subject: [PATCH 049/263] fix: allow command k trigger inside input --- frappe/public/js/frappe/form/controls/base_input.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/frappe/public/js/frappe/form/controls/base_input.js b/frappe/public/js/frappe/form/controls/base_input.js index beab7e96bd..a87155f37c 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) { From bc590c084436eabb4aa19404dca554374a28664e Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Fri, 16 Jan 2026 16:33:01 +0530 Subject: [PATCH 050/263] fix: ignore unsupported filter when querying dynamic link doctypes --- frappe/contacts/address_and_contact.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/contacts/address_and_contact.py b/frappe/contacts/address_and_contact.py index ae712f7c5a..16ae1ca68d 100644 --- a/frappe/contacts/address_and_contact.py +++ b/frappe/contacts/address_and_contact.py @@ -116,6 +116,7 @@ def filter_dynamic_link_doctypes( txt = txt or "" filters = filters or {} + filters.pop("name", None) # ignore unsupported "name" filter - passed by validate_link_and_fetch _doctypes_from_df = frappe.get_all( "DocField", From cc498d3d54408efa9a318fc8d8ac01f9fa4886c5 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Fri, 16 Jan 2026 21:52:45 +0530 Subject: [PATCH 051/263] fix: dont mutate filters for custom queries --- frappe/desk/search.py | 35 +++++++++++++++-------------------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/frappe/desk/search.py b/frappe/desk/search.py index d18ce76748..71483ff13c 100644 --- a/frappe/desk/search.py +++ b/frappe/desk/search.py @@ -109,28 +109,10 @@ def search_widget( if filters is None: filters = {} - are_filters_dict = isinstance(filters, dict) - include_disabled = False - if not query and are_filters_dict: - if "include_disabled" in filters: - if filters["include_disabled"] == 1: - include_disabled = True - filters.pop("include_disabled") - - filters = [make_filter_tuple(doctype, key, value) for key, value in filters.items()] - are_filters_dict = False - if for_link_validation: - if are_filters_dict: - # we add filter if possible, otherwise rely on txt - if "name" not in filters: - filters["name"] = txt - else: - filters.append([doctype, "name", "=", txt]) - as_dict = False - # for custom queries that don't respect filters but respect limit (rare) - # or for when we have to rely on txt + # for custom queries, we don't mutate filters + # we have to rely on txt # we want to match "A" with "A" only and not "A1", "BA" etc. page_length = PAGE_LENGTH_FOR_LINK_VALIDATION @@ -163,6 +145,19 @@ def search_widget( return [] meta = frappe.get_meta(doctype) + + include_disabled = False + if isinstance(filters, dict): + if "include_disabled" in filters: + if filters["include_disabled"] == 1: + include_disabled = True + filters.pop("include_disabled") + + filters = [make_filter_tuple(doctype, key, value) for key, value in filters.items()] + + if for_link_validation: + filters.append([doctype, "name", "=", txt]) + or_filters = [] # build from doctype From d4f1b51e98cf9eebcd1e0a9c6d57b569d74d8a0b Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Fri, 16 Jan 2026 21:53:41 +0530 Subject: [PATCH 052/263] revert: "fix: ignore unsupported filter when querying dynamic link doctypes" This reverts commit bc590c084436eabb4aa19404dca554374a28664e. --- frappe/contacts/address_and_contact.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/contacts/address_and_contact.py b/frappe/contacts/address_and_contact.py index 16ae1ca68d..ae712f7c5a 100644 --- a/frappe/contacts/address_and_contact.py +++ b/frappe/contacts/address_and_contact.py @@ -116,7 +116,6 @@ def filter_dynamic_link_doctypes( txt = txt or "" filters = filters or {} - filters.pop("name", None) # ignore unsupported "name" filter - passed by validate_link_and_fetch _doctypes_from_df = frappe.get_all( "DocField", From 190bb285c702f96c05925ef20e3102591690c823 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Sat, 17 Jan 2026 00:09:59 +0530 Subject: [PATCH 053/263] fix: args can be undefined --- frappe/public/js/frappe/form/controls/link.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/controls/link.js b/frappe/public/js/frappe/form/controls/link.js index 3439a290f7..eb3748a9c0 100644 --- a/frappe/public/js/frappe/form/controls/link.js +++ b/frappe/public/js/frappe/form/controls/link.js @@ -859,7 +859,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); From b5e5a32baad2ad72dc04b73b78c0f06fb93b9698 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Sat, 17 Jan 2026 00:34:59 +0530 Subject: [PATCH 054/263] Revert "fix: per child level 'depends on' conditions" This reverts commit b308ee813ab6eafc3b00b74d720025b4755ab201. --- frappe/public/js/frappe/form/grid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js index 87c62aee55..c8b473de6a 100644 --- a/frappe/public/js/frappe/form/grid.js +++ b/frappe/public/js/frappe/form/grid.js @@ -552,7 +552,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, From 68d6588510024fbe1f734575de66cdeb1d01375e Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Sat, 17 Jan 2026 00:35:10 +0530 Subject: [PATCH 055/263] Revert "fix: form indicators" This reverts commit 421dc48610938f1b2d34efde764844a5aef0675f. --- frappe/public/js/frappe/form/formatters.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frappe/public/js/frappe/form/formatters.js b/frappe/public/js/frappe/form/formatters.js index b2e6b3a22a..e2984e952a 100644 --- a/frappe/public/js/frappe/form/formatters.js +++ b/frappe/public/js/frappe/form/formatters.js @@ -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); From d96f2fe2a4480dc1eaeefc76d14ae0447140779f Mon Sep 17 00:00:00 2001 From: sokumon Date: Sat, 17 Jan 2026 14:15:45 +0530 Subject: [PATCH 056/263] fix: dont consider virtual doctypes for sidebar generation --- frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py b/frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py index f3448894b9..d21d79030a 100644 --- a/frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py +++ b/frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py @@ -334,7 +334,7 @@ def choose_top_doctypes(doctype_names): try: doctype_count_map = {} for doctype in doctype_names: - if not is_single_doctype(doctype): + if not is_single_doctype(doctype) and not frappe.get_meta(doctype).is_virtual: doctype_count_map[doctype] = frappe.db.count(doctype) top_doctypes = [ name From 6dc9e50bd6233377fad542488d7649606ec6b348 Mon Sep 17 00:00:00 2001 From: Kaushal Shriwas Date: Sat, 17 Jan 2026 17:30:01 +0530 Subject: [PATCH 057/263] fix: Show alert if report is empty --- frappe/public/js/frappe/views/reports/query_report.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frappe/public/js/frappe/views/reports/query_report.js b/frappe/public/js/frappe/views/reports/query_report.js index c4e76c9d83..ce07f9053f 100644 --- a/frappe/public/js/frappe/views/reports/query_report.js +++ b/frappe/public/js/frappe/views/reports/query_report.js @@ -1856,6 +1856,10 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { { label: __("Print"), action: () => { + if (!this.data?.length) { + frappe.msgprint(__("This report is empty.")); + return; + } let dialog = frappe.ui.get_print_settings( false, (print_settings) => this.print_report(print_settings), @@ -1871,6 +1875,10 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { { label: __("PDF"), action: () => { + if (!this.data?.length) { + frappe.msgprint(__("This report is empty.")); + return; + } let dialog = frappe.ui.get_print_settings( false, (print_settings) => this.pdf_report(print_settings), From 8f1ef2dd72502d4b08cea5f4aab1c4a07e78cd08 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Sat, 17 Jan 2026 18:42:08 +0530 Subject: [PATCH 058/263] fix: child table dependency evaluation for depends_on, mandatory_depends_on, read_only_depends_on - Add missing depends_on support for child table field visibility - Fix reset logic to properly re-evaluate all fields with dependencies - Remove buggy dependent_fields tracking that only tracked fields made required/readonly by dependency --- frappe/public/js/frappe/form/grid_row.js | 38 ++++++++---------------- 1 file changed, 13 insertions(+), 25 deletions(-) diff --git a/frappe/public/js/frappe/form/grid_row.js b/frappe/public/js/frappe/form/grid_row.js index 23215eed6c..61905990fe 100644 --- a/frappe/public/js/frappe/form/grid_row.js +++ b/frappe/public/js/frappe/form/grid_row.js @@ -8,10 +8,6 @@ export default class GridRow { this.set_docfields(); this.columns = {}; this.columns_list = []; - this.dependent_fields = { - mandatory: [], - read_only: [], - }; this.row_check_html = '
+
diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index bd5a3c9e36..fc51672a28 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -145,6 +145,7 @@ class DesktopPage { this.prepare(); this.make(page); this.setup_events(); + this.desktop_pane = new DesktopPane(); } update() { this.prepare(); @@ -244,6 +245,16 @@ class DesktopPage { me.start_editing_layout(); }, }, + { + label: "Add Desktop Item", + icon: "plus", + condition: function () { + return me.edit_mode; + }, + onClick: function () { + me.desktop_pane.show(); + }, + }, { label: "Reset Layout", icon: "rotate-ccw", @@ -276,7 +287,7 @@ class DesktopPage { start_editing_layout() { this.edit_mode = true; - $(".desktop-icon").addClass("edit-mode"); + $(".desktop-icon").addClass("desktop-edit-mode"); $(".desktop-wrapper").attr("data-mode", "Edit"); frappe.desktop_grids.forEach((desktop_grid) => { if (!desktop_grid.no_dragging) { @@ -478,9 +489,9 @@ class DesktopIconGrid { } this.grids.push($(template).appendTo(this.icons_container)); this.make_icons(this.icons_data_by_page, this.grids[i]); - // if (!this.no_dragging) { - // this.setup_reordering(this.grids[i]); - // } + if (this.edit_mode || !this.no_dragging) { + this.setup_reordering(this.grids[i]); + } } if (!this.in_folder && this.total_pages > 1) { this.add_page_indicators(); @@ -644,9 +655,6 @@ class DesktopIconGrid { }); dataTransfer.setData("text/plain", JSON.stringify(icon.icon_data)); // `dataTransfer` object of HTML5 DragEvent }, - onMove() { - return frappe.desktop_utils.allow_move || false; - }, onEnd: function (evt) { if (frappe.desktop_utils.in_folder_creation) return; if (evt.oldIndex !== evt.newIndex) { @@ -821,51 +829,51 @@ class DesktopIcon { } } }); - this.icon.on("dragstart", function (event) { - frappe.desktop_utils.dragged_item = event.target; - }); - this.icon.on("dragover", function (event) { - console.log(event.target); - if (frappe.desktop_utils.dragged_item == event.target.parentElement) return; - if ( - event.target == frappe.desktop_utils.dragged_item || - frappe.desktop_utils.dragged_item.contains(event.target) - ) { - return; - } - if (event.target.parentElement.classList.contains("icon-container")) { - frappe.desktop_utils.allow_move = false; - frappe.desktop_utils.in_folder_creation = true; + // this.icon.on("dragstart", function (event) { + // frappe.desktop_utils.dragged_item = event.target; + // }); + // this.icon.on("dragover", function (event) { + // console.log(event.target); + // if (frappe.desktop_utils.dragged_item == event.target.parentElement) return; + // if ( + // event.target == frappe.desktop_utils.dragged_item || + // frappe.desktop_utils.dragged_item.contains(event.target) + // ) { + // return; + // } + // if (event.target.parentElement.classList.contains("icon-container")) { + // frappe.desktop_utils.allow_move = false; + // frappe.desktop_utils.in_folder_creation = true; - let icon_list = []; - icon_list.push( - get_desktop_icon_by_label(event.target.parentElement.parentElement.dataset.id) - ); - icon_list.push( - get_desktop_icon_by_label(frappe.desktop_utils.dragged_item.dataset.id) - ); + // let icon_list = []; + // icon_list.push( + // get_desktop_icon_by_label(event.target.parentElement.parentElement.dataset.id) + // ); + // icon_list.push( + // get_desktop_icon_by_label(frappe.desktop_utils.dragged_item.dataset.id) + // ); - let icon = { - label: "Untitled Folder", - icon_type: "Folder", - child_icons: icon_list, - }; - let modal = frappe.desktop_utils.create_desktop_modal(icon); - modal.setup(icon.label, icon_list, 4); - $(event.target.parentElement).addClass("folder-icon"); - $(event.target.parentElement).empty(); - modal.show(); - frappe.boot.desktop_icons.push(icon); - icon_list.forEach((icon) => { - let desktop_icon = frappe.utils.get_desktop_icon_by_label(icon.label); - desktop_icon.parent_icon = "Untitled Folder"; - frappe.new_desktop_icons.splice(frappe.boot.desktop_icons.indexOf(icon), 1); - frappe.new_desktop_icons.push(desktop_icon); - }); - } else { - frappe.desktop_utils.allow_move = true; - } - }); + // let icon = { + // label: "Untitled Folder", + // icon_type: "Folder", + // child_icons: icon_list, + // }; + // let modal = frappe.desktop_utils.create_desktop_modal(icon); + // modal.setup(icon.label, icon_list, 4); + // $(event.target.parentElement).addClass("folder-icon"); + // $(event.target.parentElement).empty(); + // modal.show(); + // frappe.boot.desktop_icons.push(icon); + // icon_list.forEach((icon) => { + // let desktop_icon = frappe.utils.get_desktop_icon_by_label(icon.label); + // desktop_icon.parent_icon = "Untitled Folder"; + // frappe.new_desktop_icons.splice(frappe.boot.desktop_icons.indexOf(icon), 1); + // frappe.new_desktop_icons.push(desktop_icon); + // }); + // } else { + // frappe.desktop_utils.allow_move = true; + // } + // }); } } @@ -934,3 +942,32 @@ class DesktopModal { this.modal.modal("hide"); } } + +class DesktopPane { + constructor() { + this.wrapper = $(".desktop-wrapper").find(".desktop-pane"); + } + show() { + this.wrapper.removeClass("hidden"); + + new DesktopIconGrid({ + wrapper: $(".desktop-wrapper").find(".desktop-pane").find(".pane-icons-area"), + icons_data: frappe.desktop_icons, + row_size: 2, + edit_mode: true, + }); + this.setup(); + } + hide() { + this.wrapper.addClass("hidden"); + } + setup() { + this.setup_close_button(); + } + setup_close_button() { + const me = this; + this.wrapper.find(".close-button").on("click", function () { + me.hide(); + }); + } +} From 3b02e56b70407f3a51469fa4058bdae8c5cb0c6a Mon Sep 17 00:00:00 2001 From: sokumon Date: Wed, 31 Dec 2025 02:00:32 +0530 Subject: [PATCH 061/263] feat: restrict removal of icons --- frappe/desk/doctype/desktop_icon/desktop_icon.py | 7 ++++++- frappe/public/js/frappe/ui/desktop_icon.html | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/frappe/desk/doctype/desktop_icon/desktop_icon.py b/frappe/desk/doctype/desktop_icon/desktop_icon.py index b629b16873..86104c5283 100644 --- a/frappe/desk/doctype/desktop_icon/desktop_icon.py +++ b/frappe/desk/doctype/desktop_icon/desktop_icon.py @@ -46,9 +46,14 @@ class DesktopIcon(Document): def on_trash(self): clear_desktop_icons_cache() + self.check_for_restrict_removal() if frappe.conf.developer_mode and self.standard and self.app: self.delete_desktop_icon_file() + def check_for_restrict_removal(self): + if self.restrict_removal: + frappe.throw(_("Cannot delete Desktop Icon '{0}' as it is restricted").format(self.label)) + def on_update(self): allow_export = ( self.standard and self.app and not frappe.flags.in_import and frappe.conf.developer_mode @@ -150,7 +155,7 @@ def get_desktop_icons(user=None, bootinfo=None): "logo_url", "hidden", "name", - "sidebar", + "restrict_removal", ] active_domains = frappe.get_active_domains() diff --git a/frappe/public/js/frappe/ui/desktop_icon.html b/frappe/public/js/frappe/ui/desktop_icon.html index 4ffc1622cd..48d5a63ca6 100644 --- a/frappe/public/js/frappe/ui/desktop_icon.html +++ b/frappe/public/js/frappe/ui/desktop_icon.html @@ -20,7 +20,7 @@
{% } %} - {% if(!icon.in_folder) { %} + {% if(!icon.in_folder && !icon.restrict_removal) { %}
{%= frappe.utils.icon("x") %}
From 85615754acf96b92b62d452eab974f859419b53f Mon Sep 17 00:00:00 2001 From: sokumon Date: Wed, 31 Dec 2025 04:18:05 +0530 Subject: [PATCH 062/263] feat: add ability to add back icons which are removed --- frappe/desk/page/desktop/desktop.css | 1 - frappe/desk/page/desktop/desktop.js | 104 ++++++++++++--------------- 2 files changed, 46 insertions(+), 59 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.css b/frappe/desk/page/desktop/desktop.css index 11dc38eb82..4cb18aba63 100644 --- a/frappe/desk/page/desktop/desktop.css +++ b/frappe/desk/page/desktop/desktop.css @@ -486,7 +486,6 @@ border-bottom: 1px solid var(--border-color); } .pane-icons-area{ - height: 100%; .icons-container { height: 100%; margin-top: 0px; diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index fc51672a28..d74e020f8e 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -95,9 +95,10 @@ function get_route(desktop_icon) { return route; } -function get_desktop_icon_by_label(title, filters) { +function get_desktop_icon_by_label(title, filters, force) { + if (force === undefined) force = false; let icons = frappe.desktop_icons; - if (frappe.pages["desktop"].desktop_page.edit_mode) { + if (!force && frappe.pages["desktop"].desktop_page.edit_mode) { icons = frappe.new_desktop_icons; } if (!filters) { @@ -155,7 +156,7 @@ class DesktopPage { prepare() { this.apps_icons = []; - + this.hidden_icons = []; const icon_map = {}; frappe.desktop_icons = this.get_saved_layout() || frappe.boot.desktop_icons; let icons = this.edit_mode ? frappe.new_desktop_icons : frappe.desktop_icons; @@ -164,6 +165,8 @@ class DesktopPage { icon.child_icons = []; icon_map[icon.label] = icon; return true; + } else { + this.hidden_icons.push(icon); } return false; }); @@ -185,6 +188,7 @@ class DesktopPage { return JSON.parse(localStorage.getItem(`${frappe.session.user}:desktop`)); } setup_events() { + const me = this; this.wrapper.find(".hide-button").on("click", function (event) { event.preventDefault(); event.stopImmediatePropagation(); @@ -221,6 +225,7 @@ class DesktopPage { this.setup_events(); } setup_edit_button() { + if (this.edit_mode) return; const me = this; $(".desktop-edit").remove(); this.$desktop_edit_button = $( @@ -241,15 +246,18 @@ class DesktopPage { label: "Edit Layout", icon: "edit", onClick: function () { + me.$desktop_edit_button.hide(); frappe.new_desktop_icons = JSON.parse(JSON.stringify(frappe.desktop_icons)); me.start_editing_layout(); }, }, { - label: "Add Desktop Item", + label: "Restore Icons", icon: "plus", condition: function () { - return me.edit_mode; + return ( + me.edit_mode && frappe.pages.desktop.desktop_page.hidden_icons.length > 0 + ); }, onClick: function () { me.desktop_pane.show(); @@ -449,6 +457,9 @@ class DesktopPage { class DesktopIconGrid { constructor(opts) { $.extend(this, opts); + this.init(); + } + init() { this.icons = []; this.icons_html = []; // this.page_size = { @@ -463,7 +474,6 @@ class DesktopIconGrid { this.make(); frappe.desktop_grids.push(this); } - prepare() { this.total_pages = 1; this.icons_data = this.icons_data.sort((a, b) => { @@ -641,10 +651,22 @@ class DesktopIconGrid { sort: true, // keep sorting normally dragoverBubble: true, group: { - name: "desktop", + name: this.name || "desktop", put: true, pull: true, }, + onAdd(evt) { + if (Sortable.get(evt.from).option("group").name == "hidden-icons-grid") { + let icon_name = $(evt.item).attr("data-id"); + let icon = get_desktop_icon_by_label(icon_name, {}, true); + icon.index = evt.newIndex; + icon.hidden = 0; + frappe.new_desktop_icons.push(icon); + let hidden_icons = frappe.pages.desktop.desktop_page.hidden_icons; + let added_icon_index = hidden_icons.findIndex((d) => d.label == icon_name); + hidden_icons.splice(added_icon_index, 1); + } + }, onStart(evt) { frappe.desktop_utils.dragged_item = evt.item; }, @@ -687,6 +709,10 @@ class DesktopIconGrid { }); } } + update_grid(icons) { + this.wrapper.empty(); + this.init(); + } reorder_icons(reordered_icons, filters) { reordered_icons.forEach((d, idx) => { let icon = get_desktop_icon_by_label(d); @@ -829,51 +855,6 @@ class DesktopIcon { } } }); - // this.icon.on("dragstart", function (event) { - // frappe.desktop_utils.dragged_item = event.target; - // }); - // this.icon.on("dragover", function (event) { - // console.log(event.target); - // if (frappe.desktop_utils.dragged_item == event.target.parentElement) return; - // if ( - // event.target == frappe.desktop_utils.dragged_item || - // frappe.desktop_utils.dragged_item.contains(event.target) - // ) { - // return; - // } - // if (event.target.parentElement.classList.contains("icon-container")) { - // frappe.desktop_utils.allow_move = false; - // frappe.desktop_utils.in_folder_creation = true; - - // let icon_list = []; - // icon_list.push( - // get_desktop_icon_by_label(event.target.parentElement.parentElement.dataset.id) - // ); - // icon_list.push( - // get_desktop_icon_by_label(frappe.desktop_utils.dragged_item.dataset.id) - // ); - - // let icon = { - // label: "Untitled Folder", - // icon_type: "Folder", - // child_icons: icon_list, - // }; - // let modal = frappe.desktop_utils.create_desktop_modal(icon); - // modal.setup(icon.label, icon_list, 4); - // $(event.target.parentElement).addClass("folder-icon"); - // $(event.target.parentElement).empty(); - // modal.show(); - // frappe.boot.desktop_icons.push(icon); - // icon_list.forEach((icon) => { - // let desktop_icon = frappe.utils.get_desktop_icon_by_label(icon.label); - // desktop_icon.parent_icon = "Untitled Folder"; - // frappe.new_desktop_icons.splice(frappe.boot.desktop_icons.indexOf(icon), 1); - // frappe.new_desktop_icons.push(desktop_icon); - // }); - // } else { - // frappe.desktop_utils.allow_move = true; - // } - // }); } } @@ -944,18 +925,25 @@ class DesktopModal { } class DesktopPane { - constructor() { - this.wrapper = $(".desktop-wrapper").find(".desktop-pane"); + constructor() {} + get wrapper() { + return $(".desktop-wrapper .desktop-pane"); } show() { this.wrapper.removeClass("hidden"); - - new DesktopIconGrid({ - wrapper: $(".desktop-wrapper").find(".desktop-pane").find(".pane-icons-area"), - icons_data: frappe.desktop_icons, + if (this.grid) { + this.grid.icons_data = frappe.pages.desktop.desktop_page.hidden_icons; + this.grid.update_grid(); + return; + } + this.grid = new DesktopIconGrid({ + name: "hidden-icons-grid", + wrapper: this.wrapper.find(".pane-icons-area"), + icons_data: frappe.pages.desktop.desktop_page.hidden_icons, row_size: 2, edit_mode: true, }); + this.setup(); } hide() { From c3bfa24e21180aa4311f23d3dcc626afd2557ee2 Mon Sep 17 00:00:00 2001 From: sokumon Date: Wed, 31 Dec 2025 20:28:38 +0530 Subject: [PATCH 063/263] feat: init custom icons --- .../desk/doctype/desktop_icon/desktop_icon.py | 79 ++++--------------- frappe/desk/page/desktop/desktop.css | 6 ++ frappe/desk/page/desktop/desktop.js | 39 ++++++++- .../js/frappe/form/controls/dynamic_link.js | 4 +- .../public/js/frappe/list/bulk_operations.js | 2 + 5 files changed, 64 insertions(+), 66 deletions(-) diff --git a/frappe/desk/doctype/desktop_icon/desktop_icon.py b/frappe/desk/doctype/desktop_icon/desktop_icon.py index 86104c5283..068573b493 100644 --- a/frappe/desk/doctype/desktop_icon/desktop_icon.py +++ b/frappe/desk/doctype/desktop_icon/desktop_icon.py @@ -158,79 +158,34 @@ def get_desktop_icons(user=None, bootinfo=None): "restrict_removal", ] - active_domains = frappe.get_active_domains() - - DocType = frappe.qb.DocType("DocType") - if active_domains: - blocked_condition = ( - (DocType.restrict_to_domain.isnull()) - | (DocType.restrict_to_domain == "") - | (DocType.restrict_to_domain.notin(active_domains)) - ) - else: - blocked_condition = (DocType.restrict_to_domain.isnull()) | (DocType.restrict_to_domain == "") - blocked_doctypes = [ - d.get("name") - for d in frappe.qb.from_(DocType).select(DocType.name).where(blocked_condition).run(as_dict=True) - ] - standard_icons = frappe.get_all("Desktop Icon", fields=fields, filters={"standard": 1}) - standard_map = {} - - for icon in standard_icons: - if icon._doctype in blocked_doctypes: - icon.blocked = 1 - standard_map[icon.module_name] = icon - user_icons = frappe.get_all("Desktop Icon", fields=fields, filters={"standard": 0, "owner": user}) + user_icons = user_icons + standard_icons + # for icon in user_icons: + # standard_icon = standard_map.get(icon.module_name, None) - # update hidden property - for icon in user_icons: - standard_icon = standard_map.get(icon.module_name, None) + # # override properties from standard icon + # if standard_icon: + # for key in ("route", "label", "color", "icon", "link"): + # if standard_icon.get(key): + # icon[key] = standard_icon.get(key) - if icon._doctype in blocked_doctypes: - icon.blocked = 1 + # if standard_icon.blocked: + # icon.hidden = 1 - # override properties from standard icon - if standard_icon: - for key in ("route", "label", "color", "icon", "link"): - if standard_icon.get(key): - icon[key] = standard_icon.get(key) + # # flag for modules_select dialog + # icon.hidden_in_standard = 1 - if standard_icon.blocked: - icon.hidden = 1 - - # flag for modules_select dialog - icon.hidden_in_standard = 1 - - elif standard_icon.force_show: - icon.hidden = 0 - - # add missing standard icons (added via new install apps?) - user_icon_names = [icon.module_name for icon in user_icons] - for standard_icon in standard_icons: - if standard_icon.module_name not in user_icon_names: - # if blocked, hidden too! - if standard_icon.blocked: - standard_icon.hidden = 1 - standard_icon.hidden_in_standard = 1 - - user_icons.append(standard_icon) - - user_blocked_modules = frappe.get_lazy_doc("User", user).get_blocked_modules() - for icon in user_icons: - if icon.module_name in user_blocked_modules: - icon.hidden = 1 + # elif standard_icon.force_show: + # icon.hidden = 0 # sort by idx + for icon in user_icons: + print(icon.label) + print(icon.idx) user_icons.sort(key=lambda a: a.idx) - # translate - # for d in user_icons: - # if d.label: - # d.label = _(d.label, context=d.parent) - # includes permitted_icons = [] permitted_parent_labels = set() diff --git a/frappe/desk/page/desktop/desktop.css b/frappe/desk/page/desktop/desktop.css index 4cb18aba63..f56c7d6534 100644 --- a/frappe/desk/page/desktop/desktop.css +++ b/frappe/desk/page/desktop/desktop.css @@ -495,3 +495,9 @@ overflow: scroll; } } + +.add-new-icon{ + cursor: pointer; + gap: 0px; + justify-content: center; +} \ No newline at end of file diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index d74e020f8e..8e27dbca00 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -1,6 +1,7 @@ frappe.desktop_utils = {}; frappe.desktop_grids = []; frappe.desktop_icons_objects = []; +frappe.new_icons = []; $.extend(frappe.desktop_utils, { modal: null, modal_stack: [], @@ -211,6 +212,7 @@ class DesktopPage { col: 3, }, }); + this.setup_context_menu(); if (this.edit_mode) { this.start_editing_layout(); } @@ -239,7 +241,7 @@ class DesktopPage { me.start_editing_layout(); }); } - setup_editing_mode() { + setup_context_menu() { const me = this; let menu_items = [ { @@ -280,7 +282,6 @@ class DesktopPage { } stop_editing_layout(action) { this.edit_mode = false; - $(".desktop-icon").removeClass("edit-mode"); $(".desktop-wrapper").removeAttr("data-mode"); if (action === "cancel") { @@ -307,13 +308,39 @@ class DesktopPage { frappe.desktop_icons_objects.forEach((icon_object) => { icon_object.setup_dragging(); }); - if (this.edit_mode) this.setup_edit_buttons(); + this.add_new_icons_to_grid(); + if (this.edit_mode) { + this.setup_edit_buttons(); + } + } + add_new_icons_to_grid() { + let grid = $($(".desktop-container .icons").get(0)); + let desktop_icon = `
+ ${frappe.utils.icon("plus", "lg")} + New Icon +
`; + grid.append(desktop_icon); + $(".add-new-icon").on("click", function () { + frappe.ui.form.make_quick_entry( + "Desktop Icon", + function (icon) { + frappe.new_desktop_icons.push(icon); + frappe.new_icons.push(icon.name); + frappe.pages["desktop"].desktop_page.update(); + }, + "", + "", + null, + true + ); + }); } setup_edit_buttons() { const me = this; this.$edit_button = $(".edit-mode-buttons"); this.$edit_button.find(".discard").on("click", function () { me.stop_editing_layout("cancel"); + me.delete_new_icons(); }); this.$edit_button.find(".save").on("click", function () { me.stop_editing_layout("submit"); @@ -325,6 +352,12 @@ class DesktopPage { full_height: false, }); } + + delete_new_icons() { + const bulk_operations = new frappe.ui.BulkOperations({ doctype: "Desktop Icon" }); + bulk_operations.delete(frappe.new_icons); + } + setup_avatar() { $(".desktop-avatar").html(frappe.avatar(frappe.session.user, "avatar-medium")); let is_dark = document.documentElement.getAttribute("data-theme") === "dark"; 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/list/bulk_operations.js b/frappe/public/js/frappe/list/bulk_operations.js index 90336bf8ee..dd85c3da0d 100644 --- a/frappe/public/js/frappe/list/bulk_operations.js +++ b/frappe/public/js/frappe/list/bulk_operations.js @@ -485,3 +485,5 @@ export default class BulkOperations { }); } } + +frappe.ui.BulkOperations = BulkOperations; From 36b553cbb4f3eecfe947dcaab9026258211ab0ca Mon Sep 17 00:00:00 2001 From: sokumon Date: Wed, 31 Dec 2025 20:31:40 +0530 Subject: [PATCH 064/263] chore: run linter --- frappe/desk/doctype/desktop_icon/desktop_icon.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/frappe/desk/doctype/desktop_icon/desktop_icon.py b/frappe/desk/doctype/desktop_icon/desktop_icon.py index 068573b493..3129c2398e 100644 --- a/frappe/desk/doctype/desktop_icon/desktop_icon.py +++ b/frappe/desk/doctype/desktop_icon/desktop_icon.py @@ -181,9 +181,6 @@ def get_desktop_icons(user=None, bootinfo=None): # icon.hidden = 0 # sort by idx - for icon in user_icons: - print(icon.label) - print(icon.idx) user_icons.sort(key=lambda a: a.idx) permitted_icons = [] From 91eeaa524d848bbfd94d7f96fdaeeb036e8a7846 Mon Sep 17 00:00:00 2001 From: sokumon Date: Thu, 1 Jan 2026 02:06:47 +0530 Subject: [PATCH 065/263] fix: remove desktop entry from sidebar menu --- frappe/public/js/frappe/ui/sidebar/sidebar_header.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/frappe/public/js/frappe/ui/sidebar/sidebar_header.js b/frappe/public/js/frappe/ui/sidebar/sidebar_header.js index 840cc42340..0a61d3761f 100644 --- a/frappe/public/js/frappe/ui/sidebar/sidebar_header.js +++ b/frappe/public/js/frappe/ui/sidebar/sidebar_header.js @@ -16,14 +16,6 @@ frappe.ui.SidebarHeader = class SidebarHeader { }, items: this.sibling_workspaces, }, - { - name: "desktop", - label: __("Desktop"), - icon: "layout-grid", - onClick: function (el) { - frappe.set_route("/desk"); - }, - }, { name: "edit-sidebar", label: __("Edit Sidebar"), From 85ec8fb948b5309d29782188042067a6b86455de Mon Sep 17 00:00:00 2001 From: sokumon Date: Thu, 1 Jan 2026 02:54:42 +0530 Subject: [PATCH 066/263] feat: add ability to add custom image for icons --- frappe/desk/doctype/desktop_icon/desktop_icon.json | 6 ++++++ frappe/desk/doctype/desktop_icon/desktop_icon.py | 1 + frappe/desk/page/desktop/desktop.js | 3 +++ frappe/public/js/frappe/ui/desktop_icon.html | 4 ++-- 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/frappe/desk/doctype/desktop_icon/desktop_icon.json b/frappe/desk/doctype/desktop_icon/desktop_icon.json index 0b9b244579..33e0f18dce 100644 --- a/frappe/desk/doctype/desktop_icon/desktop_icon.json +++ b/frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -139,6 +139,12 @@ "fieldname": "restrict_removal", "fieldtype": "Check", "label": "Restrict Removal" + }, + { + "allow_in_quick_entry": 1, + "fieldname": "icon_image", + "fieldtype": "Attach", + "label": "Icon Image" } ], "links": [], diff --git a/frappe/desk/doctype/desktop_icon/desktop_icon.py b/frappe/desk/doctype/desktop_icon/desktop_icon.py index 3129c2398e..c7a3e9c764 100644 --- a/frappe/desk/doctype/desktop_icon/desktop_icon.py +++ b/frappe/desk/doctype/desktop_icon/desktop_icon.py @@ -156,6 +156,7 @@ def get_desktop_icons(user=None, bootinfo=None): "hidden", "name", "restrict_removal", + "icon_image", ] standard_icons = frappe.get_all("Desktop Icon", fields=fields, filters={"standard": 1}) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 8e27dbca00..fc707c066a 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -43,6 +43,9 @@ function get_route(desktop_icon) { let item = {}; if (desktop_icon.link_type == "External" && desktop_icon.link) { route = window.location.origin + desktop_icon.link; + if (desktop_icon.link.startsWith("http") || desktop_icon.link.startsWith("https")) { + route = desktop_icon.link; + } } else { let sidebar = frappe.boot.workspace_sidebar_item[desktop_icon.label.toLowerCase()]; if (desktop_icon.link_type == "Workspace Sidebar" && sidebar) { diff --git a/frappe/public/js/frappe/ui/desktop_icon.html b/frappe/public/js/frappe/ui/desktop_icon.html index 48d5a63ca6..266cb90e8f 100644 --- a/frappe/public/js/frappe/ui/desktop_icon.html +++ b/frappe/public/js/frappe/ui/desktop_icon.html @@ -3,9 +3,9 @@
{{ icon.label }}
- {% else if (icon.logo_url) { %} + {% else if (icon.logo_url || icon.icon_image) { %}
- {{ icon.label }} + {{ icon.label }}
{% } else if (icon.icon_type == "Folder") { %}
From 663c2f9794f22f187571b3494eaaf4566db4bb66 Mon Sep 17 00:00:00 2001 From: sokumon Date: Thu, 1 Jan 2026 03:42:47 +0530 Subject: [PATCH 067/263] feat: sync desktop layout using user_setttings --- frappe/desk/page/desktop/desktop.js | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index fc707c066a..784d9488e1 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -124,19 +124,21 @@ function get_desktop_icon_by_idx(idx, parent_icon) { function save_desktop(icons) { // saving in localStorage; - localStorage.setItem(`${frappe.session.user}:desktop`, JSON.stringify(icons)); - frappe.toast("Desktop Saved"); - frappe.pages["desktop"].desktop_page.update(); + frappe.model.user_settings.save( + "Desktop Icon", + "desktop_layout", + JSON.stringify(icons), + (r) => { + frappe.toast("Desktop Saved"); + frappe.pages["desktop"].desktop_page.sync_layout(); + } + ); } function reset_to_default() { - localStorage.setItem(`${frappe.session.user}:desktop`, null); + frappe.model.user_settings.save("Desktop Icon", "desktop_layout", ""); } -frappe.pages["desktop"].on_page_show = function () { - frappe.pages["desktop"].desktop_page.setup(); -}; - function toggle_icons(icons) { icons.forEach((i) => { $(i).parent().parent().show(); @@ -147,15 +149,10 @@ class DesktopPage { constructor(page) { this.page = page; this.edit_mode = false; - this.prepare(); - this.make(page); - this.setup_events(); - this.desktop_pane = new DesktopPane(); + this.sync_layout(); } update() { - this.prepare(); - this.make(); - this.setup(); + this.sync_layout(); } prepare() { From 979ca4984891c06b06a87a6a68d4d2032f91d400 Mon Sep 17 00:00:00 2001 From: sokumon Date: Thu, 1 Jan 2026 05:31:06 +0530 Subject: [PATCH 068/263] fix(menu): dont show blank menu --- frappe/public/js/frappe/ui/menu.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/ui/menu.js b/frappe/public/js/frappe/ui/menu.js index 02522dc2bd..d3a6a90e62 100644 --- a/frappe/public/js/frappe/ui/menu.js +++ b/frappe/public/js/frappe/ui/menu.js @@ -45,6 +45,7 @@ frappe.ui.menu = class ContextMenu { } make() { this.template.empty(); + this.menu_items_to_show = []; this.menu_items.forEach((f) => { f.condition = f.condition || @@ -53,13 +54,19 @@ frappe.ui.menu = class ContextMenu { }; if (f.condition()) { this.add_menu_item(f); + this.menu_items_to_show.push(f); } }); // if (!$.contains(document.body, this.template[0])) { // $(document.body).append(this.template); // } - $(document.body).append(this.template); + + // only append if there are items to show + if (this.menu_items_to_show.length > 0) { + $(document.body).append(this.template); + } + this.set_styles(); } set_styles() { From 8056731fe046356a23eda10eb5adadfbba3de588 Mon Sep 17 00:00:00 2001 From: sokumon Date: Thu, 1 Jan 2026 14:48:06 +0530 Subject: [PATCH 069/263] feat: add ability to edit custom icons --- frappe/desk/page/desktop/desktop.js | 70 +++++++++++++++++++++++++++-- 1 file changed, 67 insertions(+), 3 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 784d9488e1..1e25369f07 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -188,6 +188,27 @@ class DesktopPage { } return JSON.parse(localStorage.getItem(`${frappe.session.user}:desktop`)); } + sync_layout() { + const me = this; + let saved_layout = JSON.parse(localStorage.getItem(`${frappe.session.user}:desktop`)); + frappe.model.user_settings.get("Desktop Icon").then((user_settings) => { + if (!user_settings.desktop_layout && saved_layout) { + frappe.model.user_settings.save( + "Desktop Icon", + "desktop_layout", + JSON.stringify(saved_layout) + ); + } else if (user_settings.desktop_layout) { + frappe.desktop_icons = JSON.parse(user_settings.desktop_layout); + } else { + frappe.desktop_icons = frappe.boot.desktop_icons; + } + me.prepare(); + me.make(me.page); + me.setup(); + me.desktop_pane = new DesktopPane(); + }); + } setup_events() { const me = this; this.wrapper.find(".hide-button").on("click", function (event) { @@ -282,11 +303,11 @@ class DesktopPage { } stop_editing_layout(action) { this.edit_mode = false; - $(".desktop-icon").removeClass("edit-mode"); + $(".desktop-icon").not(".folder-icon .desktop-icon").removeClass("desktop-edit-mode"); $(".desktop-wrapper").removeAttr("data-mode"); if (action === "cancel") { frappe.new_desktop_icons = null; - this.update(); + this.sync_layout(); return; } @@ -296,7 +317,50 @@ class DesktopPage { start_editing_layout() { this.edit_mode = true; - $(".desktop-icon").addClass("desktop-edit-mode"); + $(".desktop-icon").not(".folder-icon .desktop-icon").addClass("desktop-edit-mode"); + $(".desktop-icon") + .not(".folder-icon .desktop-icon") + .each(function (index, icon) { + let icon_data = get_desktop_icon_by_label(icon.dataset.id, null, true); + frappe.ui.create_menu({ + parent: icon, + right_click: true, + menu_items: [ + { + label: "Edit", + icon: "edit", + condition: function () { + return icon_data.standard != 1; + }, + onClick: function () { + frappe.ui.form.make_quick_entry( + "Desktop Icon", + function (icon) { + let old_index = frappe.new_desktop_icons.findIndex( + (d_icon) => d_icon.label == icon.label + ); + if (old_index !== -1) { + frappe.new_desktop_icons.splice(old_index, 1); + } + frappe.new_desktop_icons.push(icon); + frappe.new_icons.push(icon.name); + frappe.pages["desktop"].desktop_page.update(); + }, + function (dialog) { + dialog.set_df_property("label", "read_only", 1); + dialog.fields.forEach((field) => { + field.default = icon_data[field.fieldname]; + }); + dialog.script_manager.trigger("refresh"); + }, + icon_data, + null + ); + }, + }, + ], + }); + }); $(".desktop-wrapper").attr("data-mode", "Edit"); frappe.desktop_grids.forEach((desktop_grid) => { if (!desktop_grid.no_dragging) { From d6824864c253f8d9891300cb4c083f25a4927795 Mon Sep 17 00:00:00 2001 From: sokumon Date: Thu, 1 Jan 2026 19:23:08 +0530 Subject: [PATCH 070/263] fix: open external url in new tab --- frappe/desk/page/desktop/desktop.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 1e25369f07..2f538ef3c0 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -891,6 +891,9 @@ class DesktopIcon { ); } } else { + if (this.icon_route.startsWith("http")) { + this.icon.attr("target", "_blank"); + } this.icon.attr("href", this.icon_route); } if (this.icon_data.sidebar) { From b1c992901e086a5186ebc014ee5857b5364adaca Mon Sep 17 00:00:00 2001 From: sokumon Date: Mon, 5 Jan 2026 14:34:28 +0530 Subject: [PATCH 071/263] feat: add ability to create folders --- frappe/desk/page/desktop/desktop.js | 56 ++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 2f538ef3c0..48ed8a7f8a 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -145,6 +145,15 @@ function toggle_icons(icons) { }); } +function add_icons_to_folder(folder_name, items) { + let folder = get_desktop_icon_by_label(folder_name); + items.forEach((item) => { + let icon = get_desktop_icon_by_label(item); + icon.parent_icon = folder.label; + }); + frappe.pages["desktop"].desktop_page.update(); +} + class DesktopPage { constructor(page) { this.page = page; @@ -158,6 +167,7 @@ class DesktopPage { prepare() { this.apps_icons = []; this.hidden_icons = []; + this.folders = []; const icon_map = {}; frappe.desktop_icons = this.get_saved_layout() || frappe.boot.desktop_icons; let icons = this.edit_mode ? frappe.new_desktop_icons : frappe.desktop_icons; @@ -165,6 +175,9 @@ class DesktopPage { if (icon.hidden != 1) { icon.child_icons = []; icon_map[icon.label] = icon; + if (icon.icon_type == "Folder") { + this.folders.push(icon.label); + } return true; } else { this.hidden_icons.push(icon); @@ -317,6 +330,7 @@ class DesktopPage { start_editing_layout() { this.edit_mode = true; + const me = this; $(".desktop-icon").not(".folder-icon .desktop-icon").addClass("desktop-edit-mode"); $(".desktop-icon") .not(".folder-icon .desktop-icon") @@ -358,6 +372,35 @@ class DesktopPage { ); }, }, + { + label: "Create Folder", + icon: "folder", + onClick: function () { + let current_grid; + frappe.desktop_grids.forEach((grid) => { + if (grid.wrapper.get(0).contains(icon)) { + current_grid = grid; + } + }); + let folder = current_grid.add_folder(); + add_icons_to_folder(folder.label, [icon_data.label]); + }, + }, + { + label: "Add To Folder", + icon: "folder-open", + condition: function () { + return me.folders.length > 0; + }, + items: me.folders.map((name) => { + return { + label: name, + onClick: function () { + add_icons_to_folder(this.label, [icon_data.label]); + }, + }; + }), + }, ], }); }); @@ -570,6 +613,17 @@ class DesktopIconGrid { this.prepare(); this.make(); frappe.desktop_grids.push(this); + this.folder_count = 0; + } + add_folder() { + this.folder_count++; + let icon = frappe.model.get_new_doc("Desktop Icon"); + icon.icon_type = "Folder"; + icon.label = `Untitled ${this.folder_count}`; + icon.idx = 100000; + frappe.new_desktop_icons.push(icon); + frappe.new_icons.push(icon); + return icon; } prepare() { this.total_pages = 1; @@ -891,7 +945,7 @@ class DesktopIcon { ); } } else { - if (this.icon_route.startsWith("http")) { + if (this.icon_route && this.icon_route.startsWith("http")) { this.icon.attr("target", "_blank"); } this.icon.attr("href", this.icon_route); From 6c6b560f9ee1e512360dd01fa94da9c41d5e0ef6 Mon Sep 17 00:00:00 2001 From: sokumon Date: Mon, 5 Jan 2026 15:02:23 +0530 Subject: [PATCH 072/263] chore: remove duplicate field in doctype json --- frappe/desk/doctype/desktop_icon/desktop_icon.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/frappe/desk/doctype/desktop_icon/desktop_icon.json b/frappe/desk/doctype/desktop_icon/desktop_icon.json index 33e0f18dce..0b9b244579 100644 --- a/frappe/desk/doctype/desktop_icon/desktop_icon.json +++ b/frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -139,12 +139,6 @@ "fieldname": "restrict_removal", "fieldtype": "Check", "label": "Restrict Removal" - }, - { - "allow_in_quick_entry": 1, - "fieldname": "icon_image", - "fieldtype": "Attach", - "label": "Icon Image" } ], "links": [], From e9ece96cb66650d00188eb28791e49d65917204a Mon Sep 17 00:00:00 2001 From: sokumon Date: Mon, 5 Jan 2026 16:52:35 +0530 Subject: [PATCH 073/263] fix: allow creating mulitple new folders --- frappe/desk/page/desktop/desktop.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 48ed8a7f8a..02bf271f2d 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -599,6 +599,7 @@ class DesktopIconGrid { $.extend(this, opts); this.init(); } + static folder_count = 0; init() { this.icons = []; this.icons_html = []; @@ -613,13 +614,12 @@ class DesktopIconGrid { this.prepare(); this.make(); frappe.desktop_grids.push(this); - this.folder_count = 0; } add_folder() { - this.folder_count++; + DesktopIconGrid.folder_count++; let icon = frappe.model.get_new_doc("Desktop Icon"); icon.icon_type = "Folder"; - icon.label = `Untitled ${this.folder_count}`; + icon.label = `Untitled ${DesktopIconGrid.folder_count}`; icon.idx = 100000; frappe.new_desktop_icons.push(icon); frappe.new_icons.push(icon); From 690053220ba0a137b6070ef81271255cfe9c75cf Mon Sep 17 00:00:00 2001 From: sokumon Date: Sat, 10 Jan 2026 01:48:00 +0530 Subject: [PATCH 074/263] fix: add reactivity to enhance editing ux --- frappe/desk/page/desktop/desktop.js | 230 ++++++++++++++++++---------- 1 file changed, 152 insertions(+), 78 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 02bf271f2d..ebcab94c42 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -331,79 +331,9 @@ class DesktopPage { start_editing_layout() { this.edit_mode = true; const me = this; - $(".desktop-icon").not(".folder-icon .desktop-icon").addClass("desktop-edit-mode"); - $(".desktop-icon") - .not(".folder-icon .desktop-icon") - .each(function (index, icon) { - let icon_data = get_desktop_icon_by_label(icon.dataset.id, null, true); - frappe.ui.create_menu({ - parent: icon, - right_click: true, - menu_items: [ - { - label: "Edit", - icon: "edit", - condition: function () { - return icon_data.standard != 1; - }, - onClick: function () { - frappe.ui.form.make_quick_entry( - "Desktop Icon", - function (icon) { - let old_index = frappe.new_desktop_icons.findIndex( - (d_icon) => d_icon.label == icon.label - ); - if (old_index !== -1) { - frappe.new_desktop_icons.splice(old_index, 1); - } - frappe.new_desktop_icons.push(icon); - frappe.new_icons.push(icon.name); - frappe.pages["desktop"].desktop_page.update(); - }, - function (dialog) { - dialog.set_df_property("label", "read_only", 1); - dialog.fields.forEach((field) => { - field.default = icon_data[field.fieldname]; - }); - dialog.script_manager.trigger("refresh"); - }, - icon_data, - null - ); - }, - }, - { - label: "Create Folder", - icon: "folder", - onClick: function () { - let current_grid; - frappe.desktop_grids.forEach((grid) => { - if (grid.wrapper.get(0).contains(icon)) { - current_grid = grid; - } - }); - let folder = current_grid.add_folder(); - add_icons_to_folder(folder.label, [icon_data.label]); - }, - }, - { - label: "Add To Folder", - icon: "folder-open", - condition: function () { - return me.folders.length > 0; - }, - items: me.folders.map((name) => { - return { - label: name, - onClick: function () { - add_icons_to_folder(this.label, [icon_data.label]); - }, - }; - }), - }, - ], - }); - }); + frappe.desktop_icons_objects.forEach((icon) => { + icon.edit_mode = true; + }); $(".desktop-wrapper").attr("data-mode", "Edit"); frappe.desktop_grids.forEach((desktop_grid) => { if (!desktop_grid.no_dragging) { @@ -412,9 +342,6 @@ class DesktopPage { }); } }); - frappe.desktop_icons_objects.forEach((icon_object) => { - icon_object.setup_dragging(); - }); this.add_new_icons_to_grid(); if (this.edit_mode) { this.setup_edit_buttons(); @@ -777,7 +704,7 @@ class DesktopIconGrid { } make_icons(icons_data, grid) { icons_data.forEach((icon) => { - let icon_obj = new DesktopIcon(icon, this.in_folder); + let icon_obj = new DesktopIcon(icon, this.in_folder, this); let icon_html = icon_obj.get_desktop_icon_html(); this.icons.push(icon_obj); this.icons_html.push(icon_html); @@ -790,6 +717,9 @@ class DesktopIconGrid { placement: "bottom", }); } + remove_label_tooltip() { + $('[data-toggle="tooltip"]').tooltip("dispose"); + } setup_reordering(grid) { const me = this; this.hoverTarget = null; @@ -879,7 +809,7 @@ class DesktopIconGrid { } } class DesktopIcon { - constructor(icon, in_folder) { + constructor(icon, in_folder, grid_obj) { this.icon_data = icon; this.icon_title = this.icon_data.label; this.icon_subtitle = ""; @@ -887,6 +817,7 @@ class DesktopIcon { this.in_folder = in_folder; this.icon_data.in_folder = in_folder; this.link_type = this.icon_data.link_type; + this._edit_mode = false; if (this.icon_type != "Folder" && !this.icon_data.sidebar) { this.icon_route = get_route(this.icon_data); } @@ -905,6 +836,29 @@ class DesktopIcon { this.parent_icon = this.icon_data.icon; this.setup_click(); this.render_folder_thumbnail(); + this.grid = grid_obj; + Object.defineProperty(this, "edit_mode", { + get: function () { + return this._edit_mode; + }, + set: function (value) { + if (value) { + if (!this.in_folder) { + this.icon.addClass("desktop-edit-mode"); + } + + this.grid.remove_label_tooltip(); + this.setup_dragging(); + this.setup_edit_menu(); + this.icon.removeAttr("href"); + } else { + this.icon.addClass("desktop-edit-mode"); + this.icon.setup_click(); + } + this._edit_mode = value; + }, + }); + frappe.desktop_icons_objects.push(this); } @@ -931,12 +885,83 @@ class DesktopIcon { get_desktop_icon_html() { return this.icon; } + setup_edit_menu() { + const me = frappe.pages["desktop"].desktop_page; + let icon_data = this.icon_data; + const icon = this; + frappe.ui.create_menu({ + parent: this.icon, + right_click: true, + menu_items: [ + { + label: "Edit", + icon: "edit", + condition: function () { + return icon_data.standard != 1; + }, + onClick: function () { + frappe.ui.form.make_quick_entry( + "Desktop Icon", + function (icon) { + let old_index = frappe.new_desktop_icons.findIndex( + (d_icon) => d_icon.label == icon.label + ); + if (old_index !== -1) { + frappe.new_desktop_icons.splice(old_index, 1); + } + frappe.new_desktop_icons.push(icon); + frappe.new_icons.push(icon.name); + frappe.pages["desktop"].desktop_page.update(); + }, + function (dialog) { + dialog.set_df_property("label", "read_only", 1); + dialog.fields.forEach((field) => { + field.default = icon_data[field.fieldname]; + }); + dialog.script_manager.trigger("refresh"); + }, + icon_data, + null + ); + }, + }, + { + label: "Create Folder", + icon: "folder", + onClick: function () { + let folder = me.grid.add_folder(); + add_icons_to_folder(folder.label, [icon_data.label]); + }, + }, + { + label: "Add To Folder", + icon: "folder-open", + condition: function () { + return me.folders.length > 0; + }, + items: me.folders.map((name) => { + return { + label: name, + onClick: function () { + add_icons_to_folder(this.label, [icon_data.label]); + }, + }; + }), + }, + ], + }); + } + setup_click() { const me = this; if (this.child_icons?.length && (this.icon_type == "App" || this.icon_type == "Folder")) { $(this.icon).on("click", () => { let modal = frappe.desktop_utils.create_desktop_modal(me); modal.setup(me.icon_title, me.child_icons, 4); + let $title = modal.modal.find(".modal-title"); + let title = new InlineEditor($title, this.icon_data.label, function (newValue) { + console.log("Init rename"); + }); modal.show(); }); if (this.icon_type == "App") { @@ -1113,3 +1138,52 @@ class DesktopPane { }); } } + +class InlineEditor { + constructor(container, initialValue = "", onRename = () => {}) { + this.container = container; + this.initialValue = initialValue; + this.onRename = onRename; + + this.render(); + this.bindEvents(); + } + + render() { + this.container.html(` +
+
+ ${this.initialValue} +
+
+ +
+
+ `); + + this.input = this.container.find(".title-input"); + this.label = this.container.find(".title-input-label"); + } + + bindEvents() { + this.container.on("click", () => { + this.label.css("visibility", "hidden"); + this.input.focus().select(); + }); + + this.input.on("keydown", (event) => { + if (event.key === "Enter") { + const newValue = this.input.val().trim(); + + this.label.css("visibility", "visible"); + this.label.find("span").text(newValue); + + this.onRename(newValue, this); + } + }); + + this.input.on("blur", () => { + this.label.css("visibility", "visible"); + }); + } +} From 27950f5955614429f31010b6e0d7002bd4a8e6a5 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sat, 10 Jan 2026 02:27:24 +0530 Subject: [PATCH 075/263] feat: allow to rename folder --- frappe/desk/page/desktop/desktop.css | 29 +++++++++++++++++++++++++ frappe/desk/page/desktop/desktop.js | 32 ++++++++++++++++++++++++---- 2 files changed, 57 insertions(+), 4 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.css b/frappe/desk/page/desktop/desktop.css index f56c7d6534..d0d8514028 100644 --- a/frappe/desk/page/desktop/desktop.css +++ b/frappe/desk/page/desktop/desktop.css @@ -500,4 +500,33 @@ cursor: pointer; gap: 0px; justify-content: center; +} + +.title-widget{ + display: inline-block; + position: relative; +} + +.title-input-label{ + position: absolute; + top: 0px; + color: var(--neutral-white); + line-height: 22px; + z-index: 1; + pointers-events: none; + width: 100%; + text-align: center; +} +.title-input-wrapper{ + position: relative; + display: inline-block; + +} + +.title-input-wrapper input{ + border: 1px solid transparent; + width: 100%; + height: 100%; + background: none; + color: var(--neutral-white); } \ No newline at end of file diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index ebcab94c42..9a1bf8e3b5 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -145,6 +145,20 @@ function toggle_icons(icons) { }); } +frappe.desktop_utils.get_folder_icons = function (folder_name) { + let icons_in_folder = []; + let icons = frappe.desktop_icons; + if (frappe.pages["desktop"].desktop_page.edit_mode) { + icons = frappe.new_desktop_icons; + } + icons.forEach((icon) => { + if (icon.parent_icon == folder_name) { + icons_in_folder.push(icon.label); + } + }); + return icons_in_folder; +}; + function add_icons_to_folder(folder_name, items) { let folder = get_desktop_icon_by_label(folder_name); items.forEach((item) => { @@ -959,8 +973,18 @@ class DesktopIcon { let modal = frappe.desktop_utils.create_desktop_modal(me); modal.setup(me.icon_title, me.child_icons, 4); let $title = modal.modal.find(".modal-title"); - let title = new InlineEditor($title, this.icon_data.label, function (newValue) { - console.log("Init rename"); + let title = new InlineEditor($title, this.icon_data.label, function ( + old_value, + new_value + ) { + let icon = get_desktop_icon_by_label(old_value); + let folder_icons = frappe.desktop_utils.get_folder_icons(old_value); + if (icon) { + icon.label = new_value; + } + add_icons_to_folder(new_value, folder_icons); + + frappe.pages["desktop"].desktop_page.update(); }); modal.show(); }); @@ -1174,11 +1198,11 @@ class InlineEditor { this.input.on("keydown", (event) => { if (event.key === "Enter") { const newValue = this.input.val().trim(); - + this.input.css("display", "none"); this.label.css("visibility", "visible"); this.label.find("span").text(newValue); - this.onRename(newValue, this); + this.onRename(this.initialValue, newValue, this); } }); From ec73e3a70c871d5374415520349e050e0f677d57 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sat, 10 Jan 2026 05:12:03 +0530 Subject: [PATCH 076/263] feat: redesign restoring panel for removed icons --- frappe/desk/page/desktop/desktop.html | 7 -- frappe/desk/page/desktop/desktop.js | 102 ++++++++++++------- frappe/public/js/frappe/ui/desktop_icon.html | 2 +- 3 files changed, 64 insertions(+), 47 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.html b/frappe/desk/page/desktop/desktop.html index fb28a17d4d..909a12e898 100644 --- a/frappe/desk/page/desktop/desktop.html +++ b/frappe/desk/page/desktop/desktop.html @@ -66,11 +66,4 @@ {{ _("Save") }}
- diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 9a1bf8e3b5..fa61a8088e 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -106,13 +106,11 @@ function get_desktop_icon_by_label(title, filters, force) { icons = frappe.new_desktop_icons; } if (!filters) { - return icons.find((f) => f.label === title && f.hidden != 1); + return icons.find((f) => f.label === title); } else { return icons.find((f) => { return ( - f.label === title && - Object.keys(filters).every((key) => f[key] === filters[key]) && - f.hidden != 1 + f.label === title && Object.keys(filters).every((key) => f[key] === filters[key]) ); }); } @@ -177,7 +175,6 @@ class DesktopPage { update() { this.sync_layout(); } - prepare() { this.apps_icons = []; this.hidden_icons = []; @@ -233,19 +230,10 @@ class DesktopPage { me.prepare(); me.make(me.page); me.setup(); - me.desktop_pane = new DesktopPane(); }); } setup_events() { const me = this; - this.wrapper.find(".hide-button").on("click", function (event) { - event.preventDefault(); - event.stopImmediatePropagation(); - let desktop_label = event.currentTarget.parentElement.dataset.id; - let desktop_icon = get_desktop_icon_by_label(desktop_label); - desktop_icon.hidden = 1; - frappe.pages["desktop"].desktop_page.update(); - }); } make() { this.page.page_head.hide(); @@ -301,18 +289,6 @@ class DesktopPage { me.start_editing_layout(); }, }, - { - label: "Restore Icons", - icon: "plus", - condition: function () { - return ( - me.edit_mode && frappe.pages.desktop.desktop_page.hidden_icons.length > 0 - ); - }, - onClick: function () { - me.desktop_pane.show(); - }, - }, { label: "Reset Layout", icon: "rotate-ccw", @@ -345,10 +321,11 @@ class DesktopPage { start_editing_layout() { this.edit_mode = true; const me = this; + this.desktop_pane = new IconsPane(); + $(".desktop-wrapper").attr("data-mode", "Edit"); frappe.desktop_icons_objects.forEach((icon) => { icon.edit_mode = true; }); - $(".desktop-wrapper").attr("data-mode", "Edit"); frappe.desktop_grids.forEach((desktop_grid) => { if (!desktop_grid.no_dragging) { desktop_grid.grids.forEach((grid) => { @@ -359,6 +336,7 @@ class DesktopPage { this.add_new_icons_to_grid(); if (this.edit_mode) { this.setup_edit_buttons(); + this.desktop_pane.show(); } } add_new_icons_to_grid() { @@ -580,6 +558,9 @@ class DesktopIconGrid { make() { const me = this; this.icons_container = $(`
`).appendTo(this.wrapper); + if (this.compact) { + this.icons_container.css("margin-top", "0px"); + } for (let i = 0; i < this.total_pages; i++) { let template = `
`; @@ -722,10 +703,19 @@ class DesktopIconGrid { let icon_html = icon_obj.get_desktop_icon_html(); this.icons.push(icon_obj); this.icons_html.push(icon_html); + this.setup_actions_on_icon(icon_obj); grid.append(icon_html); }); this.setup_tooltip(); } + setup_actions_on_icon(icon) { + if (this.edit_mode) { + icon.edit_mode = true; + } + if (this.is_pane) { + icon.in_pane = true; + } + } setup_tooltip() { $('[data-toggle="tooltip"]').tooltip({ placement: "bottom", @@ -832,6 +822,7 @@ class DesktopIcon { this.icon_data.in_folder = in_folder; this.link_type = this.icon_data.link_type; this._edit_mode = false; + this.in_pane = false; if (this.icon_type != "Folder" && !this.icon_data.sidebar) { this.icon_route = get_route(this.icon_data); } @@ -857,28 +848,58 @@ class DesktopIcon { }, set: function (value) { if (value) { - if (!this.in_folder) { - this.icon.addClass("desktop-edit-mode"); + this.icon.addClass("desktop-edit-mode"); + if (this.in_folder) { + this.icon.removeClass("desktop-edit-mode"); } - this.grid.remove_label_tooltip(); this.setup_dragging(); this.setup_edit_menu(); + this.setup_hide_button(); this.icon.removeAttr("href"); } else { this.icon.addClass("desktop-edit-mode"); - this.icon.setup_click(); + this.setup_click(); } this._edit_mode = value; }, }); - + Object.defineProperty(this, "in_pane", { + get: function () { + return this._in_pane; + }, + set: function (value) { + this._in_pane = value; + if (value) { + this.icon.find(".hide-button").html(frappe.utils.icon("plus")); + this.icon.find(".hide-button").attr("data-mode", "add"); + this.setup_hide_button(); + } else { + this.icon.find(".hide-button").html(frappe.utils.icon("x")); + this.icon.find(".hide-button").attr("data-mode", "hide"); + } + }, + }); frappe.desktop_icons_objects.push(this); } // this.child_icons = this.get_desktop_icon(this.icon_title).child_icons; // this.child_icons_data = this.get_child_icons_data(); } + setup_hide_button() { + this.icon.find(".hide-button").on("click", function (event) { + event.preventDefault(); + event.stopImmediatePropagation(); + let desktop_label = event.currentTarget.parentElement.dataset.id; + let desktop_icon = get_desktop_icon_by_label(desktop_label); + if (event.target.parentElement.dataset.mode == "hide") { + desktop_icon.hidden = 1; + } else { + desktop_icon.hidden = 0; + } + frappe.pages["desktop"].desktop_page.update(); + }); + } validate_icon() { // validate if my workspaces are empty if (this.icon_data.label == "My Workspaces") { @@ -1127,10 +1148,9 @@ class DesktopModal { } } -class DesktopPane { - constructor() {} - get wrapper() { - return $(".desktop-wrapper .desktop-pane"); +class IconsPane { + constructor() { + this.wrapper = $($(".desktop-container .icons-container").get(0)); } show() { this.wrapper.removeClass("hidden"); @@ -1139,14 +1159,18 @@ class DesktopPane { this.grid.update_grid(); return; } + this.wrapper.append( + "Removed Icons" + ); this.grid = new DesktopIconGrid({ name: "hidden-icons-grid", - wrapper: this.wrapper.find(".pane-icons-area"), + wrapper: this.wrapper, icons_data: frappe.pages.desktop.desktop_page.hidden_icons, - row_size: 2, + row_size: 6, edit_mode: true, + compact: true, + is_pane: true, }); - this.setup(); } hide() { diff --git a/frappe/public/js/frappe/ui/desktop_icon.html b/frappe/public/js/frappe/ui/desktop_icon.html index 266cb90e8f..665ebc7023 100644 --- a/frappe/public/js/frappe/ui/desktop_icon.html +++ b/frappe/public/js/frappe/ui/desktop_icon.html @@ -21,7 +21,7 @@ {% } %} {% if(!icon.in_folder && !icon.restrict_removal) { %} -
+
{%= frappe.utils.icon("x") %}
{% } %} From 0b20e81824d981f67d5c917650438cb894500226 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sat, 10 Jan 2026 14:30:00 +0530 Subject: [PATCH 077/263] fix: add a patch to mark auto generated desktop icons as non standard --- .../desk/doctype/desktop_icon/desktop_icon.py | 6 ++++-- frappe/patches.txt | 1 + ..._standard_field_for_auto_generated_icons.py | 18 ++++++++++++++++++ 3 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 frappe/patches/v16_0/unset_standard_field_for_auto_generated_icons.py diff --git a/frappe/desk/doctype/desktop_icon/desktop_icon.py b/frappe/desk/doctype/desktop_icon/desktop_icon.py index c7a3e9c764..358fc4dff3 100644 --- a/frappe/desk/doctype/desktop_icon/desktop_icon.py +++ b/frappe/desk/doctype/desktop_icon/desktop_icon.py @@ -221,7 +221,6 @@ def create_desktop_icons_from_workspace(): icon.link_type = "Workspace Sidebar" icon.label = w.name icon.icon_type = "Link" - icon.standard = 1 icon.link_to = w.name icon.icon = w.icon if w.module: @@ -267,7 +266,6 @@ def create_desktop_icons_from_installed_apps(): icon = frappe.new_doc("Desktop Icon") icon.label = app_title icon.link_type = "External" - icon.standard = 1 icon.idx = index icon.icon_type = "App" icon.app = a @@ -281,3 +279,7 @@ def create_desktop_icons_from_installed_apps(): def create_desktop_icons(): create_desktop_icons_from_installed_apps() create_desktop_icons_from_workspace() + + +def create_user_icons(user, data): + print("Hello") diff --git a/frappe/patches.txt b/frappe/patches.txt index 8e3157f7f9..6927692b4c 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -256,3 +256,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) From 8c9aa18ab552691b1ce6e1229d3fa28a419b4d3a Mon Sep 17 00:00:00 2001 From: sokumon Date: Sat, 10 Jan 2026 19:29:45 +0530 Subject: [PATCH 078/263] feat: create icons when user settings are synced --- .../desk/doctype/desktop_icon/desktop_icon.py | 18 ++++- frappe/desk/page/desktop/desktop.js | 25 +++++-- frappe/hooks.py | 2 + frappe/model/utils/user_settings.py | 8 ++- frappe/public/js/frappe/form/quick_entry.js | 69 +++++++++++++++---- 5 files changed, 101 insertions(+), 21 deletions(-) diff --git a/frappe/desk/doctype/desktop_icon/desktop_icon.py b/frappe/desk/doctype/desktop_icon/desktop_icon.py index 358fc4dff3..ad370cf734 100644 --- a/frappe/desk/doctype/desktop_icon/desktop_icon.py +++ b/frappe/desk/doctype/desktop_icon/desktop_icon.py @@ -282,4 +282,20 @@ def create_desktop_icons(): def create_user_icons(user, data): - print("Hello") + user_settings = json.loads(data) + new_icons = user_settings.get("icons_to_create") + if new_icons: + new_icons = json.loads(user_settings.get("icons_to_create")) + if new_icons: + for icon in new_icons: + try: + desktop_icon = frappe.new_doc("Desktop Icon") + desktop_icon.update(icon) + desktop_icon.owner = user + desktop_icon.save() + except Exception as e: + frappe.log_error("Error in syncing icons", e) + user_settings.pop("icons_to_create", None) + frappe.cache.hset("_user_settings", f"{'Desktop Icon'}::{user}", json.dumps(user_settings)) + return json.dumps(user_settings) + return data diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index fa61a8088e..b8d20c9d38 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -131,6 +131,18 @@ function save_desktop(icons) { frappe.pages["desktop"].desktop_page.sync_layout(); } ); + if (frappe.new_icons.length) { + frappe.model.user_settings.get("Desktop Icon").then((user_settings) => { + frappe.model.user_settings.save( + "Desktop Icon", + "icons_to_create", + JSON.stringify(frappe.new_icons), + (r) => { + frappe.pages["desktop"].desktop_page.sync_layout(); + } + ); + }); + } } function reset_to_default() { @@ -180,7 +192,7 @@ class DesktopPage { this.hidden_icons = []; this.folders = []; const icon_map = {}; - frappe.desktop_icons = this.get_saved_layout() || frappe.boot.desktop_icons; + frappe.desktop_icons = frappe.desktop_icons || frappe.boot.desktop_icons; let icons = this.edit_mode ? frappe.new_desktop_icons : frappe.desktop_icons; const all_icons = icons.filter((icon) => { if (icon.hidden != 1) { @@ -341,22 +353,23 @@ class DesktopPage { } add_new_icons_to_grid() { let grid = $($(".desktop-container .icons").get(0)); - let desktop_icon = `
+ this.add_new_icon = `
${frappe.utils.icon("plus", "lg")} New Icon
`; - grid.append(desktop_icon); + grid.append(this.add_new_icon); $(".add-new-icon").on("click", function () { frappe.ui.form.make_quick_entry( "Desktop Icon", function (icon) { frappe.new_desktop_icons.push(icon); - frappe.new_icons.push(icon.name); + frappe.new_icons.push(icon); frappe.pages["desktop"].desktop_page.update(); }, "", "", null, + true, true ); }); @@ -367,6 +380,7 @@ class DesktopPage { this.$edit_button.find(".discard").on("click", function () { me.stop_editing_layout("cancel"); me.delete_new_icons(); + $($(".desktop-container .icons").get(0)).find(".add-new-icon").remove(); }); this.$edit_button.find(".save").on("click", function () { me.stop_editing_layout("submit"); @@ -380,8 +394,7 @@ class DesktopPage { } delete_new_icons() { - const bulk_operations = new frappe.ui.BulkOperations({ doctype: "Desktop Icon" }); - bulk_operations.delete(frappe.new_icons); + frappe.new_icons = []; } setup_avatar() { diff --git a/frappe/hooks.py b/frappe/hooks.py index a977f39529..142094aaa6 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -554,3 +554,5 @@ add_to_apps_screen = [ "route": app_home, } ] + +sync_user_settings = {"Desktop Icon": "frappe.desk.doctype.desktop_icon.desktop_icon.create_user_icons"} diff --git a/frappe/model/utils/user_settings.py b/frappe/model/utils/user_settings.py index 68766a8d05..2738d38781 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)) @@ -49,6 +48,13 @@ def sync_user_settings(): for key, data in frappe.cache.hgetall("_user_settings").items(): key = safe_decode(key) doctype, user = key.split("::") # WTF? + hooks = frappe.get_hooks("sync_user_settings") + + methods = hooks.get(doctype, []) + for method in methods: + updated_data = frappe.call(method, user=user, data=data) + data = updated_data + frappe.db.multisql( { "mariadb": """INSERT INTO `__UserSettings`(`user`, `doctype`, `data`) diff --git a/frappe/public/js/frappe/form/quick_entry.js b/frappe/public/js/frappe/form/quick_entry.js index e5ee1e0036..9adf747dc4 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,6 +53,7 @@ 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(); @@ -149,18 +161,16 @@ 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(); @@ -192,19 +202,51 @@ frappe.ui.form.QuickEntryForm = class QuickEntryForm extends frappe.ui.Dialog { if (data) { me.dialog.working = true; me.script_manager.trigger("validate").then(() => { - me.insert().then(() => { - let messagetxt = __("{1} saved", [__(me.doctype), this.doc.name.bold()]); + 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(); - setTimeout(function () { - frappe.show_alert({ message: messagetxt, indicator: "green" }, 3); - }, 500); - }); + + // Trigger after_save event + if (me.script_manager.has_handler("after_save")) { + me.script_manager.trigger("after_save").then(() => { + me.handle_after_callbacks(); + }); + } else { + me.handle_after_callbacks(); + } + } else { + // Normal insert mode + me.insert().then(() => { + 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 + ); + }, 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) => { @@ -291,6 +333,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)) { From 26729e3805d988fd6b0987ab7ad1079889647264 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sat, 10 Jan 2026 21:35:37 +0530 Subject: [PATCH 079/263] fix: dont allow to edit on the mobile --- frappe/desk/page/desktop/desktop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index b8d20c9d38..bfc4a810a0 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -275,7 +275,7 @@ class DesktopPage { this.setup_events(); } setup_edit_button() { - if (this.edit_mode) return; + if (this.edit_mode || frappe.is_mobile()) return; const me = this; $(".desktop-edit").remove(); this.$desktop_edit_button = $( From 45b7fd75e4e2c4fa4e8c5aa5f33f8802b26df514 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sun, 11 Jan 2026 00:08:51 +0530 Subject: [PATCH 080/263] fix: remove the editing elements when editing is stopped --- frappe/desk/page/desktop/desktop.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index bfc4a810a0..8000d93fca 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -320,12 +320,13 @@ class DesktopPage { this.edit_mode = false; $(".desktop-icon").not(".folder-icon .desktop-icon").removeClass("desktop-edit-mode"); $(".desktop-wrapper").removeAttr("data-mode"); + $(".add-new-icon").remove(); + this.desktop_pane.hide(); if (action === "cancel") { frappe.new_desktop_icons = null; this.sync_layout(); return; } - // submit save_desktop(frappe.new_desktop_icons); } From 27168884998dd0f6f19f6ca780d09822f76f3d1f Mon Sep 17 00:00:00 2001 From: sokumon Date: Sun, 11 Jan 2026 20:14:36 +0530 Subject: [PATCH 081/263] fix: syncing issue while creation of new icon --- frappe/desk/page/desktop/desktop.js | 40 ++++++++++++++--------------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 8000d93fca..666f7f817c 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -122,31 +122,29 @@ function get_desktop_icon_by_idx(idx, parent_icon) { function save_desktop(icons) { // saving in localStorage; - frappe.model.user_settings.save( - "Desktop Icon", - "desktop_layout", - JSON.stringify(icons), - (r) => { - frappe.toast("Desktop Saved"); - frappe.pages["desktop"].desktop_page.sync_layout(); - } - ); - if (frappe.new_icons.length) { - frappe.model.user_settings.get("Desktop Icon").then((user_settings) => { - frappe.model.user_settings.save( - "Desktop Icon", - "icons_to_create", - JSON.stringify(frappe.new_icons), - (r) => { - frappe.pages["desktop"].desktop_page.sync_layout(); - } - ); + frappe.model.user_settings + .save("Desktop Icon", "desktop_layout", JSON.stringify(icons)) + .then((r) => { + if (frappe.new_icons.length) { + frappe.model.user_settings.get("Desktop Icon").then((user_settings) => { + frappe.model.user_settings + .save("Desktop Icon", "icons_to_create", JSON.stringify(frappe.new_icons)) + .then((r) => { + frappe.pages["desktop"].desktop_page.sync_layout(); + frappe.toast("Desktop Saved"); + frappe.pages["desktop"].desktop_page.sync_layout(); + }); + }); + } else { + frappe.toast("Desktop Saved"); + frappe.pages["desktop"].desktop_page.sync_layout(); + } }); - } } function reset_to_default() { - frappe.model.user_settings.save("Desktop Icon", "desktop_layout", ""); + frappe.model.user_settings.save("Desktop Icon", "icons_to_create", null); + frappe.model.user_settings.save("Desktop Icon", "desktop_layout", null); } function toggle_icons(icons) { From c174de4adebb71e8dabc1daaa86ccf563aac2abd Mon Sep 17 00:00:00 2001 From: sokumon Date: Wed, 14 Jan 2026 14:48:40 +0530 Subject: [PATCH 082/263] fix(desktop_icon): remove unecessary check on trash --- frappe/desk/doctype/desktop_icon/desktop_icon.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/desk/doctype/desktop_icon/desktop_icon.py b/frappe/desk/doctype/desktop_icon/desktop_icon.py index ad370cf734..8f25b1dd86 100644 --- a/frappe/desk/doctype/desktop_icon/desktop_icon.py +++ b/frappe/desk/doctype/desktop_icon/desktop_icon.py @@ -46,7 +46,6 @@ class DesktopIcon(Document): def on_trash(self): clear_desktop_icons_cache() - self.check_for_restrict_removal() if frappe.conf.developer_mode and self.standard and self.app: self.delete_desktop_icon_file() From 6ec121a30f4cb940bff77cbc44d0df5a8e5632e0 Mon Sep 17 00:00:00 2001 From: sokumon Date: Thu, 15 Jan 2026 20:43:14 +0530 Subject: [PATCH 083/263] fix: bring back the edit button --- frappe/desk/page/desktop/desktop.html | 1 - frappe/desk/page/desktop/desktop.js | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/desk/page/desktop/desktop.html b/frappe/desk/page/desktop/desktop.html index 909a12e898..5e4b8c4d52 100644 --- a/frappe/desk/page/desktop/desktop.html +++ b/frappe/desk/page/desktop/desktop.html @@ -53,7 +53,6 @@
-
diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 666f7f817c..f0ebfb2118 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -271,6 +271,7 @@ class DesktopPage { this.setup_awesomebar(); this.handle_route_change(); this.setup_events(); + this.setup_edit_button(); } setup_edit_button() { if (this.edit_mode || frappe.is_mobile()) return; @@ -334,6 +335,7 @@ class DesktopPage { const me = this; this.desktop_pane = new IconsPane(); $(".desktop-wrapper").attr("data-mode", "Edit"); + $(".desktop-edit").remove(); frappe.desktop_icons_objects.forEach((icon) => { icon.edit_mode = true; }); From 04972a86190be44b78f2dab55f3f9f6dd8355cb7 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sat, 17 Jan 2026 19:09:34 +0530 Subject: [PATCH 084/263] fix: remove sync_user_settings from hooks --- frappe/hooks.py | 2 -- frappe/model/utils/user_settings.py | 7 ------- 2 files changed, 9 deletions(-) diff --git a/frappe/hooks.py b/frappe/hooks.py index 142094aaa6..a977f39529 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -554,5 +554,3 @@ add_to_apps_screen = [ "route": app_home, } ] - -sync_user_settings = {"Desktop Icon": "frappe.desk.doctype.desktop_icon.desktop_icon.create_user_icons"} diff --git a/frappe/model/utils/user_settings.py b/frappe/model/utils/user_settings.py index 2738d38781..6a689b495e 100644 --- a/frappe/model/utils/user_settings.py +++ b/frappe/model/utils/user_settings.py @@ -48,13 +48,6 @@ def sync_user_settings(): for key, data in frappe.cache.hgetall("_user_settings").items(): key = safe_decode(key) doctype, user = key.split("::") # WTF? - hooks = frappe.get_hooks("sync_user_settings") - - methods = hooks.get(doctype, []) - for method in methods: - updated_data = frappe.call(method, user=user, data=data) - data = updated_data - frappe.db.multisql( { "mariadb": """INSERT INTO `__UserSettings`(`user`, `doctype`, `data`) From a0dfe6c7fb14067a4f3eb00c3c18a0afc83d46c0 Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Sat, 17 Jan 2026 20:24:45 +0000 Subject: [PATCH 085/263] fix: translate table headers in multi-select dialog --- frappe/public/js/frappe/form/multi_select_dialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/multi_select_dialog.js b/frappe/public/js/frappe/form/multi_select_dialog.js index 1a3eb1359f..b83c405cbf 100644 --- a/frappe/public/js/frappe/form/multi_select_dialog.js +++ b/frappe/public/js/frappe/form/multi_select_dialog.js @@ -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, })); } From 07751326646e382f53065fc74de6647e578cbbc9 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sun, 18 Jan 2026 18:08:54 +0530 Subject: [PATCH 086/263] feat: use desktop layout --- .../desk/doctype/desktop_layout/__init__.py | 0 .../doctype/desktop_layout/desktop_layout.js | 8 ++ .../desktop_layout/desktop_layout.json | 55 +++++++++++ .../doctype/desktop_layout/desktop_layout.py | 50 ++++++++++ .../desktop_layout/test_desktop_layout.py | 20 ++++ frappe/desk/page/desktop/desktop.html | 1 + frappe/desk/page/desktop/desktop.js | 98 ++++++------------- frappe/desk/page/desktop/desktop.py | 9 +- frappe/public/js/frappe/ui/menu.js | 12 --- 9 files changed, 171 insertions(+), 82 deletions(-) create mode 100644 frappe/desk/doctype/desktop_layout/__init__.py create mode 100644 frappe/desk/doctype/desktop_layout/desktop_layout.js create mode 100644 frappe/desk/doctype/desktop_layout/desktop_layout.json create mode 100644 frappe/desk/doctype/desktop_layout/desktop_layout.py create mode 100644 frappe/desk/doctype/desktop_layout/test_desktop_layout.py diff --git a/frappe/desk/doctype/desktop_layout/__init__.py b/frappe/desk/doctype/desktop_layout/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/frappe/desk/doctype/desktop_layout/desktop_layout.js b/frappe/desk/doctype/desktop_layout/desktop_layout.js new file mode 100644 index 0000000000..fd2086fbf9 --- /dev/null +++ b/frappe/desk/doctype/desktop_layout/desktop_layout.js @@ -0,0 +1,8 @@ +// Copyright (c) 2026, Frappe Technologies and contributors +// For license information, please see license.txt + +// frappe.ui.form.on("Desktop Layout", { +// refresh(frm) { + +// }, +// }); diff --git a/frappe/desk/doctype/desktop_layout/desktop_layout.json b/frappe/desk/doctype/desktop_layout/desktop_layout.json new file mode 100644 index 0000000000..0cdbf5921a --- /dev/null +++ b/frappe/desk/doctype/desktop_layout/desktop_layout.json @@ -0,0 +1,55 @@ +{ + "actions": [], + "allow_rename": 1, + "autoname": "field:user", + "creation": "2026-01-18 02:17:17.304705", + "doctype": "DocType", + "engine": "InnoDB", + "field_order": [ + "user", + "layout" + ], + "fields": [ + { + "fieldname": "user", + "fieldtype": "Link", + "label": "User", + "options": "User", + "unique": 1 + }, + { + "fieldname": "layout", + "fieldtype": "Code", + "label": "Layout", + "options": "JSON" + } + ], + "grid_page_length": 50, + "index_web_pages_for_search": 1, + "links": [], + "modified": "2026-01-18 02:45:37.287424", + "modified_by": "Administrator", + "module": "Desk", + "name": "Desktop Layout", + "naming_rule": "By fieldname", + "owner": "Administrator", + "permissions": [ + { + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "share": 1, + "write": 1 + } + ], + "row_format": "Dynamic", + "rows_threshold_for_grid_search": 20, + "sort_field": "creation", + "sort_order": "DESC", + "states": [] +} diff --git a/frappe/desk/doctype/desktop_layout/desktop_layout.py b/frappe/desk/doctype/desktop_layout/desktop_layout.py new file mode 100644 index 0000000000..70f8920d4e --- /dev/null +++ b/frappe/desk/doctype/desktop_layout/desktop_layout.py @@ -0,0 +1,50 @@ +# Copyright (c) 2026, Frappe Technologies and contributors +# For license information, please see license.txt + +import json + +import frappe +from frappe.model.document import Document + + +class DesktopLayout(Document): + # begin: auto-generated types + # This code is auto-generated. Do not modify anything in this block. + + from typing import TYPE_CHECKING + + if TYPE_CHECKING: + from frappe.types import DF + + layout: DF.Code | None + user: DF.Link | None + # end: auto-generated types + + pass + + +@frappe.whitelist() +def save_layout(user, layout, new_icons): + if not user: + user = frappe.session.user + layout = json.loads(layout) + new_icons = json.loads(new_icons) + desktop_layout = None + try: + desktop_layout = frappe.get_doc("Desktop Layout", frappe.session.user) + except frappe.DoesNotExistError: + frappe.clear_last_message() + desktop_layout = frappe.new_doc("Desktop Layout") + desktop_layout.user = frappe.session.user + + if layout: + desktop_layout.layout = json.dumps(layout) + desktop_layout.save() + + for icon in new_icons: + desktop_icon = frappe.new_doc("Desktop Icon") + desktop_icon.update(icon) + desktop_icon.owner = frappe.session.user + desktop_icon.save() + + return {"layout": layout} diff --git a/frappe/desk/doctype/desktop_layout/test_desktop_layout.py b/frappe/desk/doctype/desktop_layout/test_desktop_layout.py new file mode 100644 index 0000000000..06ab2868be --- /dev/null +++ b/frappe/desk/doctype/desktop_layout/test_desktop_layout.py @@ -0,0 +1,20 @@ +# Copyright (c) 2026, Frappe Technologies and Contributors +# See license.txt + +# import frappe +from frappe.tests import IntegrationTestCase + +# On IntegrationTestCase, the doctype test records and all +# link-field test record dependencies are recursively loaded +# Use these module variables to add/remove to/from that list +EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] +IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] + + +class IntegrationTestDesktopLayout(IntegrationTestCase): + """ + Integration tests for DesktopLayout. + Use this class for testing interactions between multiple components. + """ + + pass diff --git a/frappe/desk/page/desktop/desktop.html b/frappe/desk/page/desktop/desktop.html index 5e4b8c4d52..54d60c2d5e 100644 --- a/frappe/desk/page/desktop/desktop.html +++ b/frappe/desk/page/desktop/desktop.html @@ -65,4 +65,5 @@ {{ _("Save") }}
+ diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index f0ebfb2118..d4b1cc6d41 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -122,24 +122,7 @@ function get_desktop_icon_by_idx(idx, parent_icon) { function save_desktop(icons) { // saving in localStorage; - frappe.model.user_settings - .save("Desktop Icon", "desktop_layout", JSON.stringify(icons)) - .then((r) => { - if (frappe.new_icons.length) { - frappe.model.user_settings.get("Desktop Icon").then((user_settings) => { - frappe.model.user_settings - .save("Desktop Icon", "icons_to_create", JSON.stringify(frappe.new_icons)) - .then((r) => { - frappe.pages["desktop"].desktop_page.sync_layout(); - frappe.toast("Desktop Saved"); - frappe.pages["desktop"].desktop_page.sync_layout(); - }); - }); - } else { - frappe.toast("Desktop Saved"); - frappe.pages["desktop"].desktop_page.sync_layout(); - } - }); + frappe.pages["desktop"].desktop_page.save_layout(icons, frappe.new_icons); } function reset_to_default() { @@ -180,17 +163,18 @@ class DesktopPage { constructor(page) { this.page = page; this.edit_mode = false; - this.sync_layout(); + this.make(this.page); + this.setup(); } update() { - this.sync_layout(); + this.make(this.page); + this.setup(); } prepare() { this.apps_icons = []; this.hidden_icons = []; this.folders = []; const icon_map = {}; - frappe.desktop_icons = frappe.desktop_icons || frappe.boot.desktop_icons; let icons = this.edit_mode ? frappe.new_desktop_icons : frappe.desktop_icons; const all_icons = icons.filter((icon) => { if (icon.hidden != 1) { @@ -225,30 +209,40 @@ class DesktopPage { sync_layout() { const me = this; let saved_layout = JSON.parse(localStorage.getItem(`${frappe.session.user}:desktop`)); - frappe.model.user_settings.get("Desktop Icon").then((user_settings) => { - if (!user_settings.desktop_layout && saved_layout) { - frappe.model.user_settings.save( - "Desktop Icon", - "desktop_layout", - JSON.stringify(saved_layout) - ); - } else if (user_settings.desktop_layout) { - frappe.desktop_icons = JSON.parse(user_settings.desktop_layout); - } else { - frappe.desktop_icons = frappe.boot.desktop_icons; - } - me.prepare(); - me.make(me.page); - me.setup(); - }); + if (!this.data && saved_layout) { + this.save_layout(saved_layout); + } else if (Object.keys(this.data).length != 0) { + frappe.desktop_icons = this.data; + } else { + frappe.desktop_icons = frappe.boot.desktop_icons; + } } - setup_events() { + save_layout(layout, new_icons) { const me = this; + frappe.call({ + method: "frappe.desk.doctype.desktop_layout.desktop_layout.save_layout", + args: { + user: frappe.session.user, + layout: JSON.stringify(layout), + new_icons: JSON.stringify(new_icons), + }, + callback: function (r) { + me.data = r.message.layout; + me.make(me.page); + me.setup(); + frappe.new_icons = []; + }, + }); } make() { this.page.page_head.hide(); $(this.page.body).empty(); $(frappe.render_template("desktop")).appendTo(this.page.body); + if (!this.data) { + this.data = JSON.parse($("#desktop-layout").text()); + } + this.sync_layout(); + this.prepare(); this.wrapper = this.page.body.find(".desktop-container"); this.icon_grid = new DesktopIconGrid({ wrapper: this.wrapper, @@ -270,7 +264,6 @@ class DesktopPage { this.setup_navbar(); this.setup_awesomebar(); this.handle_route_change(); - this.setup_events(); this.setup_edit_button(); } setup_edit_button() { @@ -498,33 +491,6 @@ class DesktopPage { } }); } - - // setup_icon_search() { - // let all_icons = $(".icon-title"); - // let icons_to_show = []; - // $(".desktop-container .icons").append( - // "" - // ); - // $(".desktop-search-wrapper > #navbar-search").on("input", function (e) { - // let search_query = $(e.target).val().toLowerCase(); - // console.log(search_query); - // icons_to_show = []; - // all_icons.each(function (index, element) { - // $(element).parent().parent().hide(); - // let label = $(element).text().toLowerCase(); - // if (label.includes(search_query)) { - // icons_to_show.push(element); - // } - // }); - - // if (icons_to_show.length == 0) { - // $(".desktop-container .icons").find(".no-apps-message").removeClass("hidden"); - // } else { - // $(".desktop-container .icons").find(".no-apps-message").addClass("hidden"); - // } - // toggle_icons(icons_to_show); - // }); - // } } class DesktopIconGrid { diff --git a/frappe/desk/page/desktop/desktop.py b/frappe/desk/page/desktop/desktop.py index 702bfdbcd0..632783315b 100644 --- a/frappe/desk/page/desktop/desktop.py +++ b/frappe/desk/page/desktop/desktop.py @@ -13,8 +13,9 @@ def get_context(context): if not brand_logo: brand_logo = frappe.get_hooks("app_logo_url", app_name="frappe")[0] context.brand_logo = brand_logo - context.desktop_icons = get_desktop_icons() - context.current_user = frappe.session.user - # check if system is mac or not - context.is_mac = sys.platform == "darwin" + try: + context.desktop_layout = frappe.get_doc("Desktop Layout", frappe.session.user).layout or {} + except frappe.DoesNotExistError: + frappe.clear_last_message() + context.desktop_layout = {} return context diff --git a/frappe/public/js/frappe/ui/menu.js b/frappe/public/js/frappe/ui/menu.js index d3a6a90e62..e3c0d1298e 100644 --- a/frappe/public/js/frappe/ui/menu.js +++ b/frappe/public/js/frappe/ui/menu.js @@ -139,19 +139,7 @@ frappe.ui.menu = class ContextMenu { me.current_menu.show(); } } - - // debugger - // if(!current_menu.visible){ - // current_menu.show(event) - // } - // me.nested_menus.forEach(menu => { - // if(current_menu == menu) return; - // menu.hide() - // }) } - // me.nested_menus.forEach((menu) => { - // menu.hide(); - // }); }); } else if (item.items) { $(); From 6bd41217330d3a36e6ef83ce13b836ab6810ae30 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sun, 18 Jan 2026 19:10:34 +0530 Subject: [PATCH 087/263] fix: reorder only in edit mode --- frappe/desk/page/desktop/desktop.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index d4b1cc6d41..99a63579ee 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -552,9 +552,6 @@ class DesktopIconGrid { } this.grids.push($(template).appendTo(this.icons_container)); this.make_icons(this.icons_data_by_page, this.grids[i]); - if (this.edit_mode || !this.no_dragging) { - this.setup_reordering(this.grids[i]); - } } if (!this.in_folder && this.total_pages > 1) { this.add_page_indicators(); From 42c6a8c8efcedef698e01ea2e5a5c23996ba33f9 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sun, 18 Jan 2026 21:09:06 +0530 Subject: [PATCH 088/263] fix: remove desktop edit button from dom --- frappe/desk/page/desktop/desktop.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 99a63579ee..14eaec602b 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -488,6 +488,7 @@ class DesktopPage { me.edit_mode = false; $(".desktop-icon").removeClass("edit-mode"); $(".desktop-wrapper").removeAttr("data-mode"); + $(".desktop-edit").remove(); } }); } From eea8d95fbad9252cfb7cec6d009c937230f17e59 Mon Sep 17 00:00:00 2001 From: sokumon Date: Mon, 19 Jan 2026 01:16:40 +0530 Subject: [PATCH 089/263] fix: dont show tooltip in edit mode --- frappe/desk/page/desktop/desktop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 14eaec602b..1f9ee67c09 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -700,7 +700,7 @@ class DesktopIconGrid { }); } remove_label_tooltip() { - $('[data-toggle="tooltip"]').tooltip("dispose"); + $('[data-toggle="tooltip"]').tooltip("disable"); } setup_reordering(grid) { const me = this; From 49ca32f7be807ff24b87a33b3662d3782d150dbb Mon Sep 17 00:00:00 2001 From: sokumon Date: Mon, 19 Jan 2026 02:52:54 +0530 Subject: [PATCH 090/263] fix: make discarding the layout work again --- frappe/desk/page/desktop/desktop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 1f9ee67c09..c06e9cc85f 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -316,7 +316,7 @@ class DesktopPage { this.desktop_pane.hide(); if (action === "cancel") { frappe.new_desktop_icons = null; - this.sync_layout(); + this.update(); return; } // submit From ab880b4c4f119c2e3d379bfaa832070ccdaa7255 Mon Sep 17 00:00:00 2001 From: git-avc Date: Sun, 18 Jan 2026 23:13:43 +0100 Subject: [PATCH 091/263] fix: consider read-only fields --- frappe/public/js/frappe/form/controls/base_input.js | 4 ++-- frappe/public/js/frappe/form/controls/data.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frappe/public/js/frappe/form/controls/base_input.js b/frappe/public/js/frappe/form/controls/base_input.js index 4d6b641e2b..ba4b2bd0d3 100644 --- a/frappe/public/js/frappe/form/controls/base_input.js +++ b/frappe/public/js/frappe/form/controls/base_input.js @@ -179,8 +179,8 @@ frappe.ui.form.ControlInput = class ControlInput extends frappe.ui.form.Control // This is used to display formatted output AND showing values in read only fields if (this.disp_area) { $(this.disp_area).html(display_value); - // Apply alignment for Data, Int, Float fields - if (this.df.alignment && ["Data", "Int", "Float"].includes(this.df.fieldtype)) { + // Apply alignment 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()); } } diff --git a/frappe/public/js/frappe/form/controls/data.js b/frappe/public/js/frappe/form/controls/data.js index 78b22777cc..5bb401a92c 100644 --- a/frappe/public/js/frappe/form/controls/data.js +++ b/frappe/public/js/frappe/form/controls/data.js @@ -251,8 +251,8 @@ 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 if specified - if (this.df.alignment) { + // Apply alignment if specified 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()); } } From 75b4366325b295390b2a6ede7013b75c9463fb51 Mon Sep 17 00:00:00 2001 From: git-avc Date: Mon, 19 Jan 2026 00:07:22 +0100 Subject: [PATCH 092/263] fix: let's alignment on customize form --- frappe/core/doctype/docfield/docfield.py | 1 + frappe/custom/doctype/custom_field/custom_field.json | 8 ++++++++ frappe/custom/doctype/custom_field/custom_field.py | 1 + frappe/custom/doctype/customize_form/customize_form.py | 1 + .../customize_form_field/customize_form_field.json | 8 ++++++++ .../doctype/customize_form_field/customize_form_field.py | 1 + 6 files changed, 20 insertions(+) diff --git a/frappe/core/doctype/docfield/docfield.py b/frappe/core/doctype/docfield/docfield.py index 6f90b81ce9..41aab9db6a 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 diff --git a/frappe/custom/doctype/custom_field/custom_field.json b/frappe/custom/doctype/custom_field/custom_field.json index 6777fc4b35..aba6e4be1f 100644 --- a/frappe/custom/doctype/custom_field/custom_field.json +++ b/frappe/custom/doctype/custom_field/custom_field.json @@ -46,6 +46,7 @@ "print_hide", "print_hide_if_no_value", "print_width", + "alignment", "no_copy", "allow_on_submit", "in_list_view", @@ -302,6 +303,13 @@ "no_copy": 1, "print_hide": 1 }, + { + "depends_on": "eval:['Data', 'Int', 'Float', 'Currency', 'Percent'].includes(doc.fieldtype)", + "fieldname": "alignment", + "fieldtype": "Select", + "label": "Alignment", + "options": "\nLeft\nCenter\nRight" + }, { "default": "0", "fieldname": "no_copy", diff --git a/frappe/custom/doctype/custom_field/custom_field.py b/frappe/custom/doctype/custom_field/custom_field.py index e90a6caf53..02bd0d368c 100644 --- a/frappe/custom/doctype/custom_field/custom_field.py +++ b/frappe/custom/doctype/custom_field/custom_field.py @@ -24,6 +24,7 @@ class CustomField(Document): 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 diff --git a/frappe/custom/doctype/customize_form/customize_form.py b/frappe/custom/doctype/customize_form/customize_form.py index 0258abd57e..dc49394630 100644 --- a/frappe/custom/doctype/customize_form/customize_form.py +++ b/frappe/custom/doctype/customize_form/customize_form.py @@ -768,6 +768,7 @@ docfield_properties = { "permlevel": "Int", "width": "Data", "print_width": "Data", + "alignment": "Select", "non_negative": "Check", "reqd": "Check", "unique": "Check", diff --git a/frappe/custom/doctype/customize_form_field/customize_form_field.json b/frappe/custom/doctype/customize_form_field/customize_form_field.json index 9d42e98d79..6976cbe0f9 100644 --- a/frappe/custom/doctype/customize_form_field/customize_form_field.json +++ b/frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -65,6 +65,7 @@ "print_hide", "print_hide_if_no_value", "print_width", + "alignment", "columns", "width", "is_custom_field" @@ -356,6 +357,13 @@ "print_width": "50px", "width": "50px" }, + { + "depends_on": "eval:in_list(['Data', 'Int', 'Float', 'Currency', 'Percent'], doc.fieldtype)", + "fieldname": "alignment", + "fieldtype": "Select", + "label": "Alignment", + "options": "\nLeft\nCenter\nRight" + }, { "depends_on": "eval:parent.istable", "description": "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)", diff --git a/frappe/custom/doctype/customize_form_field/customize_form_field.py b/frappe/custom/doctype/customize_form_field/customize_form_field.py index 9a67a1d944..fcd28b9439 100644 --- a/frappe/custom/doctype/customize_form_field/customize_form_field.py +++ b/frappe/custom/doctype/customize_form_field/customize_form_field.py @@ -16,6 +16,7 @@ class CustomizeFormField(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 From 7b012af2f404664453395c1cda92072d5b675ea1 Mon Sep 17 00:00:00 2001 From: git-avc Date: Mon, 19 Jan 2026 00:29:02 +0100 Subject: [PATCH 093/263] fix: linters --- frappe/core/doctype/docfield/docfield.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/core/doctype/docfield/docfield.py b/frappe/core/doctype/docfield/docfield.py index 41aab9db6a..94d99fe5e9 100644 --- a/frappe/core/doctype/docfield/docfield.py +++ b/frappe/core/doctype/docfield/docfield.py @@ -127,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. """ From 9feacbbb66bebe211cd96c9b068fd83c087a442f Mon Sep 17 00:00:00 2001 From: git-avc Date: Mon, 19 Jan 2026 00:41:01 +0100 Subject: [PATCH 094/263] fix: more linters --- frappe/public/js/frappe/form/controls/base_input.js | 7 +++++-- frappe/public/js/frappe/form/controls/data.js | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/frappe/public/js/frappe/form/controls/base_input.js b/frappe/public/js/frappe/form/controls/base_input.js index ba4b2bd0d3..3cd277a239 100644 --- a/frappe/public/js/frappe/form/controls/base_input.js +++ b/frappe/public/js/frappe/form/controls/base_input.js @@ -179,8 +179,11 @@ frappe.ui.form.ControlInput = class ControlInput extends frappe.ui.form.Control // This is used to display formatted output AND showing values in read only fields if (this.disp_area) { $(this.disp_area).html(display_value); - // Apply alignment for supported fields - if (this.df.alignment && ["Data", "Int", "Float", "Currency", "Percent"].includes(this.df.fieldtype)) { + // 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()); } } diff --git a/frappe/public/js/frappe/form/controls/data.js b/frappe/public/js/frappe/form/controls/data.js index 5bb401a92c..dcaf1cab44 100644 --- a/frappe/public/js/frappe/form/controls/data.js +++ b/frappe/public/js/frappe/form/controls/data.js @@ -251,8 +251,11 @@ 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 if specified for supported field types - if (this.df.alignment && ["Data", "Int", "Float", "Currency", "Percent"].includes(this.df.fieldtype)) { + // 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()); } } From 64943c1e7fac09417767d0373bbfe99fe42276bf Mon Sep 17 00:00:00 2001 From: MochaMind Date: Mon, 19 Jan 2026 08:09:38 +0530 Subject: [PATCH 095/263] fix: Hungarian translations --- frappe/locale/hu.po | 70 ++++++++++++++++++++++----------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po index ffd24279ff..2f372a1705 100644 --- a/frappe/locale/hu.po +++ b/frappe/locale/hu.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2025-12-21 09:35+0000\n" -"PO-Revision-Date: 2026-01-14 01:41\n" +"PO-Revision-Date: 2026-01-19 02:39\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -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" @@ -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' @@ -1618,7 +1618,7 @@ 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 @@ -3440,7 +3440,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" @@ -4473,7 +4473,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" @@ -4878,7 +4878,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' @@ -5969,7 +5969,7 @@ 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 @@ -9160,7 +9160,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' @@ -11117,7 +11117,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 @@ -12523,7 +12523,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' @@ -14703,7 +14703,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 @@ -15202,12 +15202,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 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,7 +15216,7 @@ 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 msgid "List a document type" @@ -16471,7 +16471,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 @@ -16486,7 +16486,7 @@ msgstr "További tartalom az oldal aljára." #: frappe/public/js/frappe/ui/sort_selector.js:193 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." @@ -19326,7 +19326,7 @@ msgstr "Jogosultsági Szintek" #. Name of a DocType #: frappe/core/doctype/permission_log/permission_log.json msgid "Permission Log" -msgstr "Engedélynapló" +msgstr "Jogosultság Napló" #. Label of a shortcut in the Users Workspace #: frappe/core/workspace/users/users.json @@ -21047,7 +21047,7 @@ 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 @@ -21474,13 +21474,13 @@ msgstr "Token Frissítése" #: frappe/public/js/frappe/list/list_view.js:537 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 msgid "Registered but disabled" @@ -22910,7 +22910,7 @@ msgstr "Mentve" #: frappe/public/js/frappe/list/list_filter.js:20 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 @@ -23020,7 +23020,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" @@ -23809,7 +23809,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' @@ -24479,7 +24479,7 @@ msgstr "Sortörések Megjelenítése Szakaszok után" #: frappe/public/js/frappe/form/toolbar.js:443 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 +24529,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 @@ -25876,7 +25876,7 @@ 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" @@ -27542,7 +27542,7 @@ msgstr "Oldalsáv be-/kikapcsolása" #. Type: Action #: frappe/hooks.py msgid "Toggle Theme" -msgstr "Téma Váltása" +msgstr "Témaváltás" #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -27662,7 +27662,7 @@ 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 @@ -27754,7 +27754,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' @@ -31083,7 +31083,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' @@ -31692,7 +31692,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" From e8485aaa5245e163b83d05dcc03c5372c00094c8 Mon Sep 17 00:00:00 2001 From: circlecrystalin Date: Mon, 19 Jan 2026 05:19:49 +0100 Subject: [PATCH 096/263] refactor: get_left_html to use mobile_field_columns instead of index-based checks --- frappe/public/js/frappe/list/list_view.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index 87dc556b95..0d175de73e 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -796,13 +796,18 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { get_left_html(doc) { let left_html = ""; + const mobile_field_columns = this.columns.filter( + col => col.type === "Field" && col.df?.fieldname + ); let has_value_in_second_column = true; - for (let i = 0; i < this.columns.length; i++) { - let col = this.columns[i]; - - if (i == 4 && col.type == "Field" && col.df?.fieldname && !doc[col.df.fieldname] && doc[col.df.fieldname] != 0) { + if (mobile_field_columns.length > 1) { + const fieldname = mobile_field_columns[1].df.fieldname; + if (!doc[fieldname] && doc[fieldname] != 0) { has_value_in_second_column = false; } + } + for (let i = 0; i < this.columns.length; i++) { + let col = this.columns[i]; if (frappe.is_mobile() && col.type == "Field" && [3, 4].includes(i)) { left_html += `
col.type === "Field" && col.df?.fieldname + (col) => col.type === "Field" && col.df?.fieldname ); let has_value_in_second_column = true; if (mobile_field_columns.length > 1) { From 38e8b1936b2cbd12cbe6d0636f05ac94085988f3 Mon Sep 17 00:00:00 2001 From: ljain112 Date: Mon, 19 Jan 2026 13:31:34 +0530 Subject: [PATCH 098/263] fix(Quick Entry): link field not auto-set when after_save handler exist --- frappe/public/js/frappe/form/quick_entry.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/form/quick_entry.js b/frappe/public/js/frappe/form/quick_entry.js index e5ee1e0036..47f7926d16 100644 --- a/frappe/public/js/frappe/form/quick_entry.js +++ b/frappe/public/js/frappe/form/quick_entry.js @@ -263,9 +263,12 @@ 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) { + this.script_manager.trigger("after_save"); + } + + if (frappe._from_link) { frappe.ui.form.update_calling_link(this.doc); } else if (this.after_insert) { this.after_insert(this.doc); From 2aabee640209c97bff6f79a8023c197f0cb04c9d Mon Sep 17 00:00:00 2001 From: "USMAN-ENVY-15\\usman" Date: Mon, 19 Jan 2026 15:50:21 +0300 Subject: [PATCH 099/263] feat: update Saudi Riyal symbol to use new official currency symbol released U+20C1 --- frappe/geo/country_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/geo/country_info.json b/frappe/geo/country_info.json index 7a1a4fa3b2..185d969412 100644 --- a/frappe/geo/country_info.json +++ b/frappe/geo/country_info.json @@ -2359,7 +2359,7 @@ "currency_fraction": "Halala", "currency_fraction_units": 100, "currency_name": "Saudi Riyal", - "currency_symbol": "\u0631.\u0633", + "currency_symbol": "\u20C1", "number_format": "#,###.##", "timezones": [ "Asia/Riyadh" From 00680fb776fdab40158fccb49f33879546504f7d Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Mon, 19 Jan 2026 13:09:06 +0000 Subject: [PATCH 100/263] refactor: optimize context menu positioning logic Improvements: - change position to `fixed` so menu stays on top and doesn't get cut off by the sidebar's container - use `getBoundingClientRect` to calc exact position relative to the screen, better when sidebar collapsed - fix rtl alignment - off-screen fix add a safety check to make sure the menu never slides off the left edge of the window --- frappe/public/js/frappe/ui/menu.js | 54 +++++++++++------------------- 1 file changed, 20 insertions(+), 34 deletions(-) diff --git a/frappe/public/js/frappe/ui/menu.js b/frappe/public/js/frappe/ui/menu.js index e3c0d1298e..c09b382992 100644 --- a/frappe/public/js/frappe/ui/menu.js +++ b/frappe/public/js/frappe/ui/menu.js @@ -179,48 +179,27 @@ frappe.ui.menu = class ContextMenu { show(event) { this.make(); - const offset = $(this.parent).offset(); - const height = $(this.parent).outerHeight(); - this.left_offset = 0; + const parent_rect = this.parent.get(0).getBoundingClientRect(); this.gap = 4; + let top, left; if (this.opts.nested && this.opts.parent_menu) { - let top = - this.parent.get(0).getBoundingClientRect().bottom - - this.parent.get(0).getBoundingClientRect().height; - let dropdown = frappe.menu_map[this.opts.parent_menu].template; - let width = dropdown.outerWidth(); - let offset = $(dropdown).offset(); - let left = offset.left; + let parent_menu_el = frappe.menu_map[this.opts.parent_menu].template; + let parent_menu_rect = parent_menu_el.get(0).getBoundingClientRect(); + top = parent_rect.top; if (frappe.utils.is_rtl()) { - left = left - width - this.gap; + left = parent_menu_rect.left - this.template.outerWidth() - this.gap; } else { - left = left + width + this.gap; + left = parent_menu_rect.right + this.gap; } - this.template.css({ - display: "block", - position: "absolute", - top: top + "px", - left: left + "px", - }); } else { - this.template.css({ - display: "block", - position: "absolute", - top: offset.top + height + this.gap + "px", - left: offset.left, - }); + top = parent_rect.bottom + this.gap; + left = parent_rect.left; + if (this.open_on_left || frappe.utils.is_rtl()) { + left = parent_rect.right - this.template.outerWidth(); + } } - if (this.open_on_left) { - this.left_offset = this.parent.get(0).getBoundingClientRect().width; - this.template.css({ - left: - offset.left - - this.template.get(0).getBoundingClientRect().width + - this.left_offset + - "px", - }); - } + if (left < 0) left = 10; if (this.opts.right_click) { this.template.css({ @@ -229,6 +208,13 @@ frappe.ui.menu = class ContextMenu { }); } + this.template.css({ + display: "block", + position: "fixed", + top: top + "px", + left: left + "px", + }); + this.visible = true; frappe.visible_menus.push(this); } From 0080ee6aae3c4688331c81cb55037b4011e13ad2 Mon Sep 17 00:00:00 2001 From: Hussain Nagaria <34810212+NagariaHussain@users.noreply.github.com> Date: Mon, 19 Jan 2026 19:12:25 +0530 Subject: [PATCH 101/263] fix(BaseDocument): reset name when __islocal is set (#36080) --- frappe/model/base_document.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 8ce1639e51..3ec7438238 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -447,7 +447,10 @@ class BaseDocument: if __dict.get("docstatus") is None: __dict["docstatus"] = DocStatus.DRAFT - if not __dict.get("name"): + if __dict.get("__islocal"): + __dict["name"] = None + __dict["__temporary_name"] = frappe.generate_hash(length=10) + elif not __dict.get("name"): __dict["__islocal"] = 1 __dict["__temporary_name"] = frappe.generate_hash(length=10) From 258741432ec35f7458167975c4fa52f8d571e2a7 Mon Sep 17 00:00:00 2001 From: AarDG10 Date: Mon, 19 Jan 2026 19:50:24 +0530 Subject: [PATCH 102/263] revert: keep validation on client side only since permission issue is specific to grid rendering on client side --- frappe/public/js/frappe/microtemplate.js | 3 --- frappe/utils/print_format.py | 4 +--- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/frappe/public/js/frappe/microtemplate.js b/frappe/public/js/frappe/microtemplate.js index 7a1558c949..f3041c677a 100644 --- a/frappe/public/js/frappe/microtemplate.js +++ b/frappe/public/js/frappe/microtemplate.js @@ -187,9 +187,6 @@ frappe.render_pdf = function (html, opts = {}) { //Push the HTML content into an element formData.append("html", html); - if (opts.doctype) { - formData.append("doctype", opts.doctype); - } if (opts.orientation) { formData.append("orientation", opts.orientation); } diff --git a/frappe/utils/print_format.py b/frappe/utils/print_format.py index 10afc78889..59a94be98c 100644 --- a/frappe/utils/print_format.py +++ b/frappe/utils/print_format.py @@ -253,9 +253,7 @@ def download_pdf( @frappe.whitelist() -def report_to_pdf(html, orientation="Landscape", doctype=None): - if doctype: - frappe.has_permission(doctype, "print", throw=True) +def report_to_pdf(html, orientation="Landscape"): make_access_log(file_type="PDF", method="PDF", page=html) frappe.local.response.filename = "report.pdf" frappe.local.response.filecontent = get_pdf(html, {"orientation": orientation}) From ad16700b6f81be37b58e7a90642c50f539790429 Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Mon, 19 Jan 2026 16:10:57 +0000 Subject: [PATCH 103/263] fix: improve UI spacing in MultiSelectDialog results --- frappe/public/js/frappe/form/multi_select_dialog.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/public/js/frappe/form/multi_select_dialog.js b/frappe/public/js/frappe/form/multi_select_dialog.js index b83c405cbf..616f203bfc 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"); @@ -477,7 +477,7 @@ frappe.ui.form.MultiSelectDialog = class MultiSelectDialog {
`; }); - let $row = $(`
+ let $row = $(`
` + `
` ).append($row)); return $row; From b9d65510f4d21c93632266c35ee270f4829eec25 Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Mon, 19 Jan 2026 16:25:53 +0000 Subject: [PATCH 104/263] fix: add more space to the top --- frappe/public/js/frappe/form/multi_select_dialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/multi_select_dialog.js b/frappe/public/js/frappe/form/multi_select_dialog.js index 616f203bfc..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"); From 4f20c1cc363fe0af359eb04676ca4035cc83ac85 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Mon, 19 Jan 2026 23:12:13 +0530 Subject: [PATCH 105/263] perf: memoize functions constructed for eval --- frappe/public/js/frappe/utils/utils.js | 29 +++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/frappe/public/js/frappe/utils/utils.js b/frappe/public/js/frappe/utils/utils.js index 4366b77f3f..6bfd05f263 100644 --- a/frappe/public/js/frappe/utils/utils.js +++ b/frappe/public/js/frappe/utils/utils.js @@ -6,6 +6,8 @@ import number_systems from "./number_systems"; frappe.provide("frappe.utils"); +const eval_function_cache = new Map(); + // Array de duplicate if (!Array.prototype.uniqBy) { Object.defineProperty(Array.prototype, "uniqBy", { @@ -1116,14 +1118,35 @@ Object.assign(frappe.utils, { if (code.substr(0, 5) == "eval:") { code = code.substr(5); } + let variable_names = Object.keys(context); let variables = Object.values(context); - code = `let out = ${code}; return out`; + + // only cache expressions under 500 chars + const should_cache = code.length < 500; + const cache_key = should_cache ? code + "|" + variable_names.join(",") : null; + + let expression_function = cache_key && eval_function_cache.get(cache_key); + + if (!expression_function) { + const function_code = `let out = ${code}; return out`; + try { + expression_function = new Function(...variable_names, function_code); + } catch (error) { + console.log("Error evaluating the following expression:"); + console.error(function_code); + throw error; + } + + if (cache_key) { + eval_function_cache.set(cache_key, expression_function); + } + } + try { - let expression_function = new Function(...variable_names, code); return expression_function(...variables); } catch (error) { - console.log("Error evaluating the following expression:"); + console.log("Error executing the following expression:"); console.error(code); throw error; } From ad1fb20d25ff31288735c74f4ea08a921744e70a Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Tue, 20 Jan 2026 00:04:02 +0530 Subject: [PATCH 106/263] refactor: improve `refresh_dependency` and remove legacy code --- frappe/public/js/frappe/form/layout.js | 42 +++----------------------- 1 file changed, 5 insertions(+), 37 deletions(-) diff --git a/frappe/public/js/frappe/form/layout.js b/frappe/public/js/frappe/form/layout.js index aad7c8c45a..7ae298756a 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(); } } @@ -773,8 +743,6 @@ frappe.ui.form.Layout = class Layout { ); } } - - this.refresh_section_count(); } set_dependant_property(condition, fieldname, property) { From 1011b59493aff17c23cab18264e9a06fa3c4b861 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Tue, 20 Jan 2026 00:50:47 +0530 Subject: [PATCH 107/263] perf: refresh grid only if props are changed --- frappe/public/js/frappe/form/grid_row.js | 38 +++++++++++++++--------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/frappe/public/js/frappe/form/grid_row.js b/frappe/public/js/frappe/form/grid_row.js index 61905990fe..af2974b3f6 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 = {}; @@ -792,27 +798,31 @@ export default class GridRow { } set_dependant_property(df) { - if (df.depends_on) { - df.hidden_due_to_dependency = !this.evaluate_depends_on_value(df.depends_on) ? 1 : 0; + 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.mandatory_depends_on) { - df.reqd = this.evaluate_depends_on_value(df.mandatory_depends_on) ? 1 : 0; - } - - if (df.read_only_depends_on) { - df.read_only = this.evaluate_depends_on_value(df.read_only_depends_on) ? 1 : 0; - } + return changed; } refresh_dependency() { - // re-evaluate all fields that have dependency expressions - this.docfields.forEach((df) => { + // re-evaluate dependency expressions and refresh only if something changed + let changed = false; + for (const df of this.docfields) { if (df.depends_on || df.mandatory_depends_on || df.read_only_depends_on) { - this.set_dependant_property(df); + changed ||= this.set_dependant_property(df); } - }); - this.refresh(); + } + if (changed) { + this.refresh(); + } } evaluate_depends_on_value(expression) { From e2d59693f7be428538d328d80df9e97c05f934f3 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Tue, 20 Jan 2026 00:56:26 +0530 Subject: [PATCH 108/263] chore: use constant in `refresh_dependency` --- frappe/public/js/frappe/form/grid_row.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/grid_row.js b/frappe/public/js/frappe/form/grid_row.js index af2974b3f6..555c8b192a 100644 --- a/frappe/public/js/frappe/form/grid_row.js +++ b/frappe/public/js/frappe/form/grid_row.js @@ -816,7 +816,7 @@ export default class GridRow { // re-evaluate dependency expressions and refresh only if something changed let changed = false; for (const df of this.docfields) { - if (df.depends_on || df.mandatory_depends_on || df.read_only_depends_on) { + if (DEPENDENCY_PROPERTIES.some((d) => df[d.expr])) { changed ||= this.set_dependant_property(df); } } From f9a11644b487ba450b2e350eaf3230c2e59da139 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Tue, 20 Jan 2026 01:12:35 +0530 Subject: [PATCH 109/263] perf: evaluate properties only for visible columns --- frappe/public/js/frappe/form/grid_row.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/form/grid_row.js b/frappe/public/js/frappe/form/grid_row.js index 555c8b192a..032fe6f40b 100644 --- a/frappe/public/js/frappe/form/grid_row.js +++ b/frappe/public/js/frappe/form/grid_row.js @@ -813,9 +813,10 @@ export default class GridRow { } refresh_dependency() { - // re-evaluate dependency expressions and refresh only if something changed + // re-evaluate dependency expressions of all columns + // refresh if some property changed let changed = false; - for (const df of this.docfields) { + for (const { df } of this.columns_list) { if (DEPENDENCY_PROPERTIES.some((d) => df[d.expr])) { changed ||= this.set_dependant_property(df); } From 0fcfe8230100079799a6ff52d11a016d4df6796f Mon Sep 17 00:00:00 2001 From: sokumon Date: Fri, 16 Jan 2026 17:16:32 +0530 Subject: [PATCH 110/263] fix: always show check filters --- frappe/public/js/frappe/views/reports/query_report.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/public/js/frappe/views/reports/query_report.js b/frappe/public/js/frappe/views/reports/query_report.js index c4e76c9d83..55f718ad64 100644 --- a/frappe/public/js/frappe/views/reports/query_report.js +++ b/frappe/public/js/frappe/views/reports/query_report.js @@ -538,6 +538,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { let filter_area = this.page.page_form; this.filters = []; + this.check_filter_area = filter_area; if (this.report_settings.seperate_check_filters) this.setup_check_filter_area(); this.filters = filters .map((df, index) => { From c5678b65e7defd02a14c3f134924acc32def4ddb Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Tue, 20 Jan 2026 01:18:22 +0530 Subject: [PATCH 111/263] fix: refresh row deps on parent update --- frappe/public/js/frappe/form/layout.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frappe/public/js/frappe/form/layout.js b/frappe/public/js/frappe/form/layout.js index 7ae298756a..c0da70f26e 100644 --- a/frappe/public/js/frappe/form/layout.js +++ b/frappe/public/js/frappe/form/layout.js @@ -742,6 +742,12 @@ frappe.ui.form.Layout = class Layout { "read_only" ); } + + if (f.df.fieldtype === "Table") { + for (const row of f.grid?.grid_rows || []) { + row.refresh_dependency(); + } + } } } From 6bab4fa3a08199ff9b0e967fe22b0b73f0408daa Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Tue, 20 Jan 2026 01:34:04 +0530 Subject: [PATCH 112/263] chore: improve comment --- frappe/public/js/frappe/form/grid_row.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/grid_row.js b/frappe/public/js/frappe/form/grid_row.js index 032fe6f40b..472e8a1780 100644 --- a/frappe/public/js/frappe/form/grid_row.js +++ b/frappe/public/js/frappe/form/grid_row.js @@ -813,7 +813,7 @@ export default class GridRow { } refresh_dependency() { - // re-evaluate dependency expressions of all columns + // re-evaluate dependency expressions of visible columns // refresh if some property changed let changed = false; for (const { df } of this.columns_list) { From ed7f78cf0dd90d247f20296b8f99e96003271831 Mon Sep 17 00:00:00 2001 From: sokumon Date: Tue, 20 Jan 2026 02:16:30 +0530 Subject: [PATCH 113/263] fix(report_view): handle select filters correctly --- .../js/frappe/views/reports/query_report.js | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/frappe/public/js/frappe/views/reports/query_report.js b/frappe/public/js/frappe/views/reports/query_report.js index 55f718ad64..b2a54e5180 100644 --- a/frappe/public/js/frappe/views/reports/query_report.js +++ b/frappe/public/js/frappe/views/reports/query_report.js @@ -538,7 +538,6 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { let filter_area = this.page.page_form; this.filters = []; - this.check_filter_area = filter_area; if (this.report_settings.seperate_check_filters) this.setup_check_filter_area(); this.filters = filters .map((df, index) => { @@ -624,7 +623,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { for (let i = this.filter_row_length; i < this.filters.length; i++) { $(this.filters[i].wrapper).addClass("hidden"); } - this.check_filter_area.css("display", "none"); + this.check_filter_area && this.check_filter_area.css("display", "none"); this.filters_hidden = false; icon_name = "chevron-down"; } else { @@ -642,15 +641,23 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { const me = this; let filter_no = this.filter_row_length - 1; if (this.filters[filter_no]) { - this.$collapse_button = $(`
${frappe.utils.icon("chevron-down")}
`); + this.$collapse_button = $( + `
${frappe.utils.icon( + "chevron-down" + )}
` + ); $(this.filters[filter_no].wrapper).append(this.$collapse_button); $(this.filters[filter_no].wrapper).css("display", "flex"); $(this.filters[filter_no].wrapper).css("align-items", "center"); $(this.filters[filter_no].wrapper).css("gap", "16px"); - - this.$collapse_button.addClass("btn"); - this.$collapse_button.addClass("btn-xs"); - this.$collapse_button.addClass("btn-secondary"); + if ($(this.filters[filter_no].wrapper).find("select")) { + $(this.filters[filter_no].wrapper) + .find(".select-icon") + .css( + "left", + $(this.filters[filter_no].wrapper).find("select").width() + 18 + "px" + ); + } this.$collapse_button.on("click", function () { me.toggle_filter_visiblity(); }); From b5350924e5755e229dabf3e0172d129ba0671c9a Mon Sep 17 00:00:00 2001 From: sokumon Date: Tue, 20 Jan 2026 02:40:26 +0530 Subject: [PATCH 114/263] fix(report_view): improve check fields ui --- frappe/public/js/frappe/views/reports/query_report.js | 5 +++-- frappe/public/scss/desk/report.scss | 3 +++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/views/reports/query_report.js b/frappe/public/js/frappe/views/reports/query_report.js index b2a54e5180..fe8af1001c 100644 --- a/frappe/public/js/frappe/views/reports/query_report.js +++ b/frappe/public/js/frappe/views/reports/query_report.js @@ -538,13 +538,14 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { let filter_area = this.page.page_form; this.filters = []; - if (this.report_settings.seperate_check_filters) this.setup_check_filter_area(); + if (this.report_settings.separate_check_filters) this.setup_check_filter_area(); this.filters = filters .map((df, index) => { if (df.fieldtype === "Break") return; let f; if (df.fieldtype === "Check" && this.check_filter_area) { f = this.page.add_field(df, this.check_filter_area); + // $(f.wrapper).removeClass("col-md-2"); } else { f = this.page.add_field(df, filter_area); } @@ -582,7 +583,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { return f; }) .filter(Boolean); - if (this.report_settings.seperate_check_filters) this.move_check_filter_area(); + if (this.report_settings.separate_check_filters) this.move_check_filter_area(); if (this.report_settings.collapsible_filters) { this.filters_hidden = true; this.filter_row_length = this.get_filter_row_length(); diff --git a/frappe/public/scss/desk/report.scss b/frappe/public/scss/desk/report.scss index adb4795504..54fd8a8441 100644 --- a/frappe/public/scss/desk/report.scss +++ b/frappe/public/scss/desk/report.scss @@ -302,4 +302,7 @@ .check-filter-area { display: flex; flex-wrap: wrap; + // Find a better fix + text-wrap: nowrap; + gap: 85px; } From 8c3177ea6e440e2cabf39911a1f6b41079f487dc Mon Sep 17 00:00:00 2001 From: sokumon Date: Tue, 20 Jan 2026 03:13:52 +0530 Subject: [PATCH 115/263] fix(report_view): multiselect filter --- .../js/frappe/views/reports/query_report.js | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/frappe/public/js/frappe/views/reports/query_report.js b/frappe/public/js/frappe/views/reports/query_report.js index fe8af1001c..c6740827ff 100644 --- a/frappe/public/js/frappe/views/reports/query_report.js +++ b/frappe/public/js/frappe/views/reports/query_report.js @@ -545,7 +545,6 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { let f; if (df.fieldtype === "Check" && this.check_filter_area) { f = this.page.add_field(df, this.check_filter_area); - // $(f.wrapper).removeClass("col-md-2"); } else { f = this.page.add_field(df, filter_area); } @@ -651,19 +650,21 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { $(this.filters[filter_no].wrapper).css("display", "flex"); $(this.filters[filter_no].wrapper).css("align-items", "center"); $(this.filters[filter_no].wrapper).css("gap", "16px"); - if ($(this.filters[filter_no].wrapper).find("select")) { - $(this.filters[filter_no].wrapper) - .find(".select-icon") - .css( - "left", - $(this.filters[filter_no].wrapper).find("select").width() + 18 + "px" - ); - } + this.handle_filter_styles($(this.filters[filter_no].wrapper)); this.$collapse_button.on("click", function () { me.toggle_filter_visiblity(); }); } } + handle_filter_styles(wrapper) { + if (wrapper.find("select")) { + wrapper.find(".select-icon").css("left", wrapper.find("select").width() + 18 + "px"); + } + + if (wrapper.find(".multiselect-list")) { + wrapper.find(".multiselect-list").css("flex", "1 0"); + } + } set_filters(filters) { this.filters.map((f) => { From 00235bbb07f5f5326e58e0464ed1045b2f9b629e Mon Sep 17 00:00:00 2001 From: sokumon Date: Tue, 20 Jan 2026 03:22:28 +0530 Subject: [PATCH 116/263] fix: check filters overlapping issue --- frappe/public/scss/desk/report.scss | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frappe/public/scss/desk/report.scss b/frappe/public/scss/desk/report.scss index 54fd8a8441..7fea75c849 100644 --- a/frappe/public/scss/desk/report.scss +++ b/frappe/public/scss/desk/report.scss @@ -302,7 +302,5 @@ .check-filter-area { display: flex; flex-wrap: wrap; - // Find a better fix - text-wrap: nowrap; - gap: 85px; + width: 100%; } From 201df39a580ecc365a0fb52fae362aec3c2338e7 Mon Sep 17 00:00:00 2001 From: UmakanthKaspa Date: Tue, 20 Jan 2026 05:37:04 +0000 Subject: [PATCH 117/263] fix: respect cannot_add_rows when toggling Add Row button visibility --- frappe/public/js/frappe/form/grid.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js index c8b473de6a..389736befb 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) { From 72ce53bb6a5fc5f40d3c85dceb4b8f4a06b8d072 Mon Sep 17 00:00:00 2001 From: AarDG10 Date: Tue, 20 Jan 2026 11:48:09 +0530 Subject: [PATCH 118/263] fix(contact): ensure query is compatible with postgres --- frappe/contacts/doctype/contact/contact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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("%", ""), From 575b76888743f3b78fcf032ed53c6d5108d33232 Mon Sep 17 00:00:00 2001 From: sokumon Date: Tue, 20 Jan 2026 12:06:47 +0530 Subject: [PATCH 119/263] fix: explicity show the sidebar for the desktop icon --- frappe/desk/page/desktop/desktop.js | 18 +++--------------- frappe/public/js/frappe/ui/sidebar/sidebar.js | 6 +++++- 2 files changed, 8 insertions(+), 16 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index c06e9cc85f..8fa8aa8c79 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -91,6 +91,9 @@ function get_route(desktop_icon) { type: first_link.link_type, name: first_link.link_to, tab: first_link.tab, + route_options: { + sidebar: desktop_icon.label, + }, }); } } @@ -998,21 +1001,6 @@ class DesktopIcon { } this.icon.attr("href", this.icon_route); } - if (this.icon_data.sidebar) { - const me = this; - this.icon.on("click", function () { - if (me.icon_data.sidebar == "My Workspaces") { - let sidebar_name = me.icon_data.sidebar.toLowerCase(); - if (frappe.boot.workspace_sidebar_item[sidebar_name].items.length == 0) { - frappe.toast("No Private Workspaces for user"); - } else { - let workspace_name = - frappe.boot.workspace_sidebar_item[sidebar_name].items[0]["link_to"]; - frappe.set_route("Workspaces", "private", workspace_name); - } - } - }); - } } render_folder_thumbnail() { diff --git a/frappe/public/js/frappe/ui/sidebar/sidebar.js b/frappe/public/js/frappe/ui/sidebar/sidebar.js index 205f0766ef..98b501ad02 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(); From 44a5621dfa73375e9d9aa024f4adfb2c84ada66d Mon Sep 17 00:00:00 2001 From: sokumon Date: Tue, 20 Jan 2026 12:20:46 +0530 Subject: [PATCH 120/263] fix: show the correct result in awesomebar --- frappe/public/js/frappe/ui/toolbar/awesome_bar.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/public/js/frappe/ui/toolbar/awesome_bar.js b/frappe/public/js/frappe/ui/toolbar/awesome_bar.js index c5850990f7..be85e825e6 100644 --- a/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +++ b/frappe/public/js/frappe/ui/toolbar/awesome_bar.js @@ -110,6 +110,9 @@ frappe.search.AwesomeBar = class AwesomeBar { if (d.type == "Desktop Icon") { target = frappe.utils.get_route_for_icon(d.icon_data); d.route = target; + d.route_options = { + sidebar: d.icon_data.label, + }; } let html = `${__(d.label || d.value)}`; From 01c6a55031692fd9d39e1f0083ccad8238ff549d Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Tue, 20 Jan 2026 12:27:19 +0530 Subject: [PATCH 121/263] perf: random memory optimizations (#36102) * perf: preload mysqlclient Now the default choice instead of PyMySQL. * perf: Lazy load JWT OAuth is not used that frequently, on that many sites. * perf: Lazy load whoosh Rarely loaded --- frappe/app.py | 2 +- frappe/oauth.py | 5 ++++- frappe/search/__init__.py | 5 ++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/frappe/app.py b/frappe/app.py index 49cacb9a46..29a82ffb0a 100644 --- a/frappe/app.py +++ b/frappe/app.py @@ -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/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/search/__init__.py b/frappe/search/__init__.py index 959e0884a8..997b7db975 100644 --- a/frappe/search/__init__.py +++ b/frappe/search/__init__.py @@ -2,14 +2,13 @@ # License: MIT. See LICENSE import frappe -from frappe.search.full_text_search import FullTextSearch -from frappe.search.sqlite_search import SQLiteSearch -from frappe.search.website_search import WebsiteSearch from frappe.utils import cint @frappe.whitelist(allow_guest=True) def web_search(query, scope=None, limit=20): + from frappe.search.website_search import WebsiteSearch + limit = cint(limit) ws = WebsiteSearch(index_name="web_routes") return ws.search(query, scope, limit) From 95d9568a803cdfd5ac2031207bb82ed40016c859 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Tue, 20 Jan 2026 12:46:01 +0530 Subject: [PATCH 122/263] chore: revert workspace settings --- frappe/desk/desktop.py | 14 ---- .../doctype/workspace_settings/__init__.py | 0 .../test_workspace_settings.py | 9 --- .../workspace_settings/workspace_settings.js | 37 ----------- .../workspace_settings.json | 66 ------------------- .../workspace_settings/workspace_settings.py | 41 ------------ frappe/patches.txt | 1 - frappe/tests/ui_test_helpers.py | 2 - 8 files changed, 170 deletions(-) delete mode 100644 frappe/desk/doctype/workspace_settings/__init__.py delete mode 100644 frappe/desk/doctype/workspace_settings/test_workspace_settings.py delete mode 100644 frappe/desk/doctype/workspace_settings/workspace_settings.js delete mode 100644 frappe/desk/doctype/workspace_settings/workspace_settings.json delete mode 100644 frappe/desk/doctype/workspace_settings/workspace_settings.py diff --git a/frappe/desk/desktop.py b/frappe/desk/desktop.py index 95d1c92556..09d0c94afc 100644 --- a/frappe/desk/desktop.py +++ b/frappe/desk/desktop.py @@ -458,14 +458,6 @@ def get_workspace_sidebar_items(): pages = [] private_pages = [] - # get additional settings from Work Settings - try: - workspace_visibilty = loads( - frappe.db.get_single_value("Workspace Settings", "workspace_visibility_json") or "{}" - ) - except JSONDecodeError: - workspace_visibilty = {} - # Filter Page based on Permission for page in all_pages: try: @@ -477,9 +469,6 @@ def get_workspace_sidebar_items(): private_pages.append(page) page["label"] = _(page.get("name")) - if page["name"] in workspace_visibilty: - page["visibility"] = workspace_visibilty[page["name"]] - if not page["app"] and page["module"]: page["app"] = frappe.db.get_value("Module Def", page["module"], "app_name") or get_module_app( page["module"] @@ -502,9 +491,6 @@ def get_workspace_sidebar_items(): pages.append(next((x for x in all_pages if x["title"] == "Welcome Workspace"), None)) return { - "workspace_setup_completed": frappe.db.get_single_value( - "Workspace Settings", "workspace_setup_completed" - ), "pages": pages, "has_access": has_access, "has_create_access": frappe.has_permission(doctype="Workspace", ptype="create"), diff --git a/frappe/desk/doctype/workspace_settings/__init__.py b/frappe/desk/doctype/workspace_settings/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/desk/doctype/workspace_settings/test_workspace_settings.py b/frappe/desk/doctype/workspace_settings/test_workspace_settings.py deleted file mode 100644 index 219ba291c7..0000000000 --- a/frappe/desk/doctype/workspace_settings/test_workspace_settings.py +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2024, Frappe Technologies and Contributors -# See license.txt - -# import frappe -from frappe.tests import IntegrationTestCase - - -class TestWorkspaceSettings(IntegrationTestCase): - pass diff --git a/frappe/desk/doctype/workspace_settings/workspace_settings.js b/frappe/desk/doctype/workspace_settings/workspace_settings.js deleted file mode 100644 index 100743fbe0..0000000000 --- a/frappe/desk/doctype/workspace_settings/workspace_settings.js +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) 2024, Frappe Technologies and contributors -// For license information, please see license.txt - -frappe.ui.form.on("Workspace Settings", { - setup(frm) { - frm.hide_full_form_button = true; - frm.docfields = []; - frm.workspace_map = {}; - let workspace_visibilty = JSON.parse(frm.doc.workspace_visibility_json || "{}"); - - // build fields from workspaces - let cnt = 0, - column_added = false; - for (let page of frappe.boot.allowed_workspaces) { - if (page.public) { - frm.workspace_map[page.name] = page; - cnt++; - frm.docfields.push({ - fieldtype: "Check", - fieldname: page.name, - label: page.title + (page.parent_page ? ` (${page.parent_page})` : ""), - initial_value: workspace_visibilty[page.name] !== 0, // not set is also visible - }); - } - } - - frappe.temp = frm; - }, - validate(frm) { - frm.doc.workspace_visibility_json = JSON.stringify(frm.dialog.get_values()); - frm.doc.workspace_setup_completed = 1; - }, - after_save(frm) { - // reload page to show latest sidebar - frappe.app.sidebar.reload(); - }, -}); diff --git a/frappe/desk/doctype/workspace_settings/workspace_settings.json b/frappe/desk/doctype/workspace_settings/workspace_settings.json deleted file mode 100644 index 0bc478d9c0..0000000000 --- a/frappe/desk/doctype/workspace_settings/workspace_settings.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "actions": [], - "allow_rename": 1, - "creation": "2024-08-02 14:20:30.177818", - "doctype": "DocType", - "engine": "InnoDB", - "field_order": [ - "select_workspaces_section", - "workspace_visibility_json", - "workspace_setup_completed" - ], - "fields": [ - { - "fieldname": "select_workspaces_section", - "fieldtype": "Section Break", - "label": "Select Workspaces" - }, - { - "fieldname": "workspace_visibility_json", - "fieldtype": "JSON", - "in_list_view": 1, - "label": "Workspace Visibility", - "reqd": 1 - }, - { - "default": "0", - "fieldname": "workspace_setup_completed", - "fieldtype": "Check", - "label": "Workspace Setup Completed" - } - ], - "index_web_pages_for_search": 1, - "issingle": 1, - "links": [], - "modified": "2024-09-03 21:29:54.127014", - "modified_by": "Administrator", - "module": "Desk", - "name": "Workspace Settings", - "owner": "Administrator", - "permissions": [ - { - "create": 1, - "delete": 1, - "email": 1, - "print": 1, - "read": 1, - "role": "System Manager", - "share": 1, - "write": 1 - }, - { - "create": 1, - "delete": 1, - "email": 1, - "print": 1, - "read": 1, - "role": "Workspace Manager", - "share": 1, - "write": 1 - } - ], - "quick_entry": 1, - "sort_field": "creation", - "sort_order": "DESC", - "states": [] -} \ No newline at end of file diff --git a/frappe/desk/doctype/workspace_settings/workspace_settings.py b/frappe/desk/doctype/workspace_settings/workspace_settings.py deleted file mode 100644 index 5197b6bc60..0000000000 --- a/frappe/desk/doctype/workspace_settings/workspace_settings.py +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright (c) 2024, Frappe Technologies and contributors -# For license information, please see license.txt - -import json - -import frappe -from frappe.model.document import Document - - -class WorkspaceSettings(Document): - # begin: auto-generated types - # This code is auto-generated. Do not modify anything in this block. - - from typing import TYPE_CHECKING - - if TYPE_CHECKING: - from frappe.types import DF - - workspace_setup_completed: DF.Check - workspace_visibility_json: DF.JSON - # end: auto-generated types - - pass - - def on_update(self): - frappe.clear_cache() - - -@frappe.whitelist() -def set_sequence(sidebar_items): - if not WorkspaceSettings("Workspace Settings").has_permission(): - frappe.throw_permission_error() - - cnt = 1 - for item in json.loads(sidebar_items): - frappe.db.set_value("Workspace", item.get("name"), "sequence_id", cnt) - frappe.db.set_value("Workspace", item.get("name"), "parent_page", item.get("parent") or "") - cnt += 1 - - frappe.clear_cache() - frappe.toast(frappe._("Updated")) diff --git a/frappe/patches.txt b/frappe/patches.txt index 6927692b4c..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 diff --git a/frappe/tests/ui_test_helpers.py b/frappe/tests/ui_test_helpers.py index c89328c588..d9ce9f9ed2 100644 --- a/frappe/tests/ui_test_helpers.py +++ b/frappe/tests/ui_test_helpers.py @@ -449,8 +449,6 @@ def create_test_user(username=None): user.save() - frappe.db.set_single_value("Workspace Settings", "workspace_setup_completed", 1) - @whitelist_for_tests() def setup_tree_doctype(): From 86f38f434e3bc1adb369bd2921aeb73ba14ee673 Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Tue, 20 Jan 2026 12:46:39 +0530 Subject: [PATCH 123/263] style: use optional chaining --- frappe/public/js/frappe/form/script_manager.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; From 0c49aa5428704f9bfa93d9614263a5c504ddd07c Mon Sep 17 00:00:00 2001 From: Sagar Vora <16315650+sagarvora@users.noreply.github.com> Date: Tue, 20 Jan 2026 12:53:47 +0530 Subject: [PATCH 124/263] revert: remove script manager from Quick Entry dialog --- frappe/public/js/frappe/form/quick_entry.js | 66 +++++++-------------- 1 file changed, 21 insertions(+), 45 deletions(-) diff --git a/frappe/public/js/frappe/form/quick_entry.js b/frappe/public/js/frappe/form/quick_entry.js index 16133b1b75..a2583ac15f 100644 --- a/frappe/public/js/frappe/form/quick_entry.js +++ b/frappe/public/js/frappe/form/quick_entry.js @@ -55,7 +55,6 @@ frappe.ui.form.QuickEntryForm = class QuickEntryForm extends frappe.ui.Dialog { this.set_meta_and_mandatory_fields(); if (this.is_quick_entry() || this.force) { - this.setup_script_manager(); this.render_dialog(); resolve(this); } else { @@ -140,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"); @@ -174,8 +166,6 @@ frappe.ui.form.QuickEntryForm = class QuickEntryForm extends frappe.ui.Dialog { this.refresh_dependency(); this.set_defaults(); - this.script_manager.trigger("refresh"); - if (this.init_callback) { this.init_callback(this); } @@ -201,39 +191,29 @@ 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(); + 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), me.doc.name.bold()]); me.dialog.animation_speed = "slow"; me.dialog.hide(); - - // Trigger after_save event - if (me.script_manager.has_handler("after_save")) { - me.script_manager.trigger("after_save").then(() => { - me.handle_after_callbacks(); - }); - } else { - me.handle_after_callbacks(); - } - } else { - // Normal insert mode - me.insert().then(() => { - 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 - ); - }, 500); - }); - } - }); + setTimeout(function () { + frappe.show_alert( + { + message: messagetxt, + indicator: "green", + }, + 3 + ); + }, 500); + }); + } } }); } @@ -306,10 +286,6 @@ frappe.ui.form.QuickEntryForm = class QuickEntryForm extends frappe.ui.Dialog { frappe.model.clear_doc(this.doc.doctype, this.doc.name); this.doc = r.message; - if (this.script_manager.has_handler("after_save")) { - this.script_manager.trigger("after_save"); - } - if (frappe._from_link) { frappe.ui.form.update_calling_link(this.doc); } else if (this.after_insert) { From 90354c68df37a09408a2d48f93f28f90ba1d409a Mon Sep 17 00:00:00 2001 From: Jannat Patel <31363128+pateljannat@users.noreply.github.com> Date: Tue, 20 Jan 2026 13:50:58 +0530 Subject: [PATCH 125/263] fix: capture session user from backend if not found in frontend (#36072) --- frappe/public/js/telemetry/pulse.js | 2 +- frappe/utils/telemetry/pulse/client.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/telemetry/pulse.js b/frappe/public/js/telemetry/pulse.js index 6cab492a57..406f75541b 100644 --- a/frappe/public/js/telemetry/pulse.js +++ b/frappe/public/js/telemetry/pulse.js @@ -34,7 +34,7 @@ class PulseProvider { event_name: event, app: app, properties: props, - user: frappe.session.user, + user: frappe.session?.user, captured_at: new Date().toISOString(), }); } diff --git a/frappe/utils/telemetry/pulse/client.py b/frappe/utils/telemetry/pulse/client.py index 54d542c42b..9703f8f70b 100644 --- a/frappe/utils/telemetry/pulse/client.py +++ b/frappe/utils/telemetry/pulse/client.py @@ -57,7 +57,7 @@ def bulk_capture(events): event.get("event_name"), site=event.get("site"), app=event.get("app"), - user=event.get("user"), + user=event.get("user") or frappe.session.user, captured_at=event.get("captured_at"), properties=event.get("properties"), interval=event.get("interval"), From fbc2290dc38d9ccf1ee2aa6257f0b5d55b89aee4 Mon Sep 17 00:00:00 2001 From: UmakanthKaspa Date: Tue, 20 Jan 2026 08:53:34 +0000 Subject: [PATCH 126/263] fix: align checkbox with label in field properties sidebar --- .../js/form_builder/components/controls/CheckControl.vue | 5 +++++ 1 file changed, 5 insertions(+) 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; From 4ee1f1cb45782065c7a0b8a62dcca412dff8ae87 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan <67804911+iamejaaz@users.noreply.github.com> Date: Tue, 20 Jan 2026 14:44:25 +0530 Subject: [PATCH 127/263] Revert "fix: update print_settings (#35878)" This reverts commit be0815a495c47e12955dbc6dabc057a2fa398863. --- frappe/public/js/frappe/form/print_utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/print_utils.js b/frappe/public/js/frappe/form/print_utils.js index 44879b377e..64c9a75a6a 100644 --- a/frappe/public/js/frappe/form/print_utils.js +++ b/frappe/public/js/frappe/form/print_utils.js @@ -88,7 +88,7 @@ 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; From c6ef0bc5975e6fd1b31178e4eab9b5d75d144374 Mon Sep 17 00:00:00 2001 From: Kaushal Shriwas Date: Tue, 20 Jan 2026 16:10:28 +0530 Subject: [PATCH 128/263] fix: Hide print and pdf button if report has no data --- .../js/frappe/views/reports/query_report.js | 21 +++++++++++-------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/frappe/public/js/frappe/views/reports/query_report.js b/frappe/public/js/frappe/views/reports/query_report.js index ce07f9053f..db7375342c 100644 --- a/frappe/public/js/frappe/views/reports/query_report.js +++ b/frappe/public/js/frappe/views/reports/query_report.js @@ -812,11 +812,13 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { this.render_datatable(); this.add_chart_buttons_to_toolbar(true); this.add_card_button_to_toolbar(); + this.toggle_print_buttons(true); this.$report.show(); } else { this.data = []; this.toggle_nothing_to_show(true); this.add_chart_buttons_to_toolbar(false); + this.toggle_print_buttons(false); } this.show_footer_message(); @@ -1856,10 +1858,6 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { { label: __("Print"), action: () => { - if (!this.data?.length) { - frappe.msgprint(__("This report is empty.")); - return; - } let dialog = frappe.ui.get_print_settings( false, (print_settings) => this.print_report(print_settings), @@ -1875,10 +1873,6 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { { label: __("PDF"), action: () => { - if (!this.data?.length) { - frappe.msgprint(__("This report is empty.")); - return; - } let dialog = frappe.ui.get_print_settings( false, (print_settings) => this.pdf_report(print_settings), @@ -1886,7 +1880,6 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { this.get_visible_columns(), true ); - this.add_portrait_warning(dialog); }, condition: () => frappe.model.can_print(this.report_doc.ref_doctype), @@ -2307,6 +2300,16 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { this.$summary.toggle(flag); } + toggle_print_buttons(show) { + const menu = this.page.menu; + menu.find(`a:contains("${__("Print")}")`) + .parent() + .toggle(show); + menu.find(`a:contains("${__("PDF")}")`) + .parent() + .toggle(show); + } + get_checked_items(only_docnames) { const indexes = this.datatable.rowmanager.getCheckedRows(); From 7539c76471a73296d8d068809bc6b800d2b20d58 Mon Sep 17 00:00:00 2001 From: circlecrystalin Date: Tue, 20 Jan 2026 12:17:44 +0100 Subject: [PATCH 129/263] feat: Add Select All/Unselect All option in Select Table Columns dialog --- .../print_format_builder.js | 27 +++++++++++++++++++ .../print_format_builder_column_selector.html | 6 +++++ 2 files changed, 33 insertions(+) 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..ff1c2c8c88 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,33 @@ frappe.PrintFormatBuilder = class PrintFormatBuilder { update_column_count_message(); }); + // Select All functionality + $body.on("click", ".select-all-btn", function () { + $body.find("input[type='checkbox']").each(function () { + if (!$(this).prop("checked")) { + $(this).prop("checked", true); + var fieldname = $(this).attr("data-fieldname"); + var input = get_width_input(fieldname); + input.prop("disabled", false); + } + }); + update_column_count_message(); + }); + + // Unselect All functionality + $body.on("click", ".unselect-all-btn", function () { + $body.find("input[type='checkbox']").each(function () { + if ($(this).prop("checked")) { + $(this).prop("checked", false); + var fieldname = $(this).attr("data-fieldname"); + var input = get_width_input(fieldname); + input.prop("disabled", true); + input.val(""); + } + }); + update_column_count_message(); + }); + 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 @@

{{ __("Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.") }}

+
+
+ + +
+

{{ __("Column") }}

{{ __("Width") }}

From a25b84ae2486329919a7fea24d389c96e871860e Mon Sep 17 00:00:00 2001 From: circlecrystalin Date: Tue, 20 Jan 2026 12:52:44 +0100 Subject: [PATCH 130/263] docs: update PR description From 4cb440c179b23ee2dcefefe52aae4b850fbad451 Mon Sep 17 00:00:00 2001 From: sokumon Date: Tue, 20 Jan 2026 17:23:39 +0530 Subject: [PATCH 131/263] fix: workspace creation issue --- frappe/desk/doctype/workspace/workspace.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/desk/doctype/workspace/workspace.py b/frappe/desk/doctype/workspace/workspace.py index c45b249cf7..4ee11c1725 100644 --- a/frappe/desk/doctype/workspace/workspace.py +++ b/frappe/desk/doctype/workspace/workspace.py @@ -307,7 +307,8 @@ def new_page(new_page): # add to workspace sidebar items if not doc.public: add_to_my_workspace(doc) - return {"workspace_pages": get_workspace_sidebar_items(), "sidebar_items": get_sidebar_items()} + workspaces = get_workspace_sidebar_items() + return {"workspace_pages": workspaces, "sidebar_items": get_sidebar_items(workspaces)} @frappe.whitelist() From b3b85b9090a40f65d86c6edd90f67b169d7e6301 Mon Sep 17 00:00:00 2001 From: circlecrystalin Date: Tue, 20 Jan 2026 13:34:07 +0100 Subject: [PATCH 132/263] refactor: use const instead of var in Select All/Unselect All functions --- .../page/print_format_builder/print_format_builder.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 ff1c2c8c88..c651bc157c 100644 --- a/frappe/printing/page/print_format_builder/print_format_builder.js +++ b/frappe/printing/page/print_format_builder/print_format_builder.js @@ -709,8 +709,8 @@ frappe.PrintFormatBuilder = class PrintFormatBuilder { $body.find("input[type='checkbox']").each(function () { if (!$(this).prop("checked")) { $(this).prop("checked", true); - var fieldname = $(this).attr("data-fieldname"); - var input = get_width_input(fieldname); + const fieldname = $(this).attr("data-fieldname"); + const input = get_width_input(fieldname); input.prop("disabled", false); } }); @@ -722,8 +722,8 @@ frappe.PrintFormatBuilder = class PrintFormatBuilder { $body.find("input[type='checkbox']").each(function () { if ($(this).prop("checked")) { $(this).prop("checked", false); - var fieldname = $(this).attr("data-fieldname"); - var input = get_width_input(fieldname); + const fieldname = $(this).attr("data-fieldname"); + const input = get_width_input(fieldname); input.prop("disabled", true); input.val(""); } From cc32eb1f075a0e12bdfd7f4d4c634f303fe90fe3 Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Tue, 20 Jan 2026 13:06:42 +0000 Subject: [PATCH 133/263] fix: clean up user selections from `print_settings` after `callback()` --- frappe/public/js/frappe/form/print_utils.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frappe/public/js/frappe/form/print_utils.js b/frappe/public/js/frappe/form/print_utils.js index 64c9a75a6a..eae2b99360 100644 --- a/frappe/public/js/frappe/form/print_utils.js +++ b/frappe/public/js/frappe/form/print_utils.js @@ -104,6 +104,10 @@ frappe.ui.get_print_settings = function ( } callback(settings); + // clean up user selections from settings + columns + .filter((d) => d.fieldname in settings) + .forEach((d) => delete settings[d.fieldname]); }, __("Print Settings") ); From 233871dd78ccd92fe86ea865294c550bcc4e2e2d Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Tue, 20 Jan 2026 14:10:41 +0000 Subject: [PATCH 134/263] fix: reset print format in settings to prevent carryover to next print --- frappe/public/js/frappe/form/print_utils.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frappe/public/js/frappe/form/print_utils.js b/frappe/public/js/frappe/form/print_utils.js index eae2b99360..7b08175056 100644 --- a/frappe/public/js/frappe/form/print_utils.js +++ b/frappe/public/js/frappe/form/print_utils.js @@ -104,10 +104,10 @@ frappe.ui.get_print_settings = function ( } callback(settings); - // clean up user selections from settings - columns - .filter((d) => d.fieldname in settings) - .forEach((d) => delete settings[d.fieldname]); + // clean up print format to avoid affecting next print + if (settings.print_format) { + settings.print_format = null; + } }, __("Print Settings") ); From 42a4319ee798c55e597d23a5d7fc2e5d80ced89e Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Tue, 20 Jan 2026 17:08:44 +0100 Subject: [PATCH 135/263] fix: use inline formatting for link filter values (#36134) --- frappe/public/js/frappe/form/controls/link.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/controls/link.js b/frappe/public/js/frappe/form/controls/link.js index eb3748a9c0..75b8e75c0b 100644 --- a/frappe/public/js/frappe/form/controls/link.js +++ b/frappe/public/js/frappe/form/controls/link.js @@ -600,7 +600,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) { From 2df6e92c2fa2479f8cab78fac8ea8cfb2b18decd Mon Sep 17 00:00:00 2001 From: Rahul Agrawal <12agrawalrahul@gmail.com> Date: Tue, 20 Jan 2026 22:17:12 +0530 Subject: [PATCH 136/263] fix: remove read-only field validation map_doc (#35757) --- frappe/model/mapper.py | 3 --- 1 file changed, 3 deletions(-) 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: From d04e3c06fdefd77e6db6cbc85d7d73bd08ee5441 Mon Sep 17 00:00:00 2001 From: vishwajeet-13 Date: Tue, 20 Jan 2026 22:24:14 +0530 Subject: [PATCH 137/263] fix: indicator pill breaking UI issue --- frappe/public/scss/common/indicator.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/public/scss/common/indicator.scss b/frappe/public/scss/common/indicator.scss index da9e26dba0..2b3005d2d2 100644 --- a/frappe/public/scss/common/indicator.scss +++ b/frappe/public/scss/common/indicator.scss @@ -5,6 +5,9 @@ display: inline-flex; align-items: center; } +.list-row-col .indicator-pill { + max-width: 150px; +} .indicator::before { content: ""; From 65dbc16948a1e0ea3ba82df5e663dff43036d555 Mon Sep 17 00:00:00 2001 From: circlecrystalin Date: Tue, 20 Jan 2026 18:14:30 +0100 Subject: [PATCH 138/263] refactor: scope checkbox selection to dialog and extract reusable function - Scope checkbox selector to .column-selector-list to prevent selecting checkboxes outside the dialog - Refactor Select All and Unselect All into reusable toggle_all_checkboxes function - Reduce code duplication and improve maintainability --- .../print_format_builder.js | 39 +++++++++++-------- 1 file changed, 22 insertions(+), 17 deletions(-) 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 c651bc157c..eb91f44141 100644 --- a/frappe/printing/page/print_format_builder/print_format_builder.js +++ b/frappe/printing/page/print_format_builder/print_format_builder.js @@ -704,31 +704,36 @@ frappe.PrintFormatBuilder = class PrintFormatBuilder { update_column_count_message(); }); - // Select All functionality - $body.on("click", ".select-all-btn", function () { - $body.find("input[type='checkbox']").each(function () { - if (!$(this).prop("checked")) { - $(this).prop("checked", true); - const fieldname = $(this).attr("data-fieldname"); + // 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", false); + 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 () { - $body.find("input[type='checkbox']").each(function () { - if ($(this).prop("checked")) { - $(this).prop("checked", false); - const fieldname = $(this).attr("data-fieldname"); - const input = get_width_input(fieldname); - input.prop("disabled", true); - input.val(""); - } - }); - update_column_count_message(); + toggle_all_checkboxes(false, true); }); d.show(); From 43a03d4a44a3f92f1d5da61d595efea8d064f42b Mon Sep 17 00:00:00 2001 From: circlecrystalin Date: Tue, 20 Jan 2026 18:17:40 +0100 Subject: [PATCH 139/263] style: apply prettier formatting and remove trailing whitespace --- .../print_format_builder.js | 32 ++++++++++--------- 1 file changed, 17 insertions(+), 15 deletions(-) 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 eb91f44141..bae82ba040 100644 --- a/frappe/printing/page/print_format_builder/print_format_builder.js +++ b/frappe/printing/page/print_format_builder/print_format_builder.js @@ -707,22 +707,24 @@ frappe.PrintFormatBuilder = class PrintFormatBuilder { // 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(""); + $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(); }; From f498d8a04e004cd5fe122497f3e0b3fbf11a1dbc Mon Sep 17 00:00:00 2001 From: vishwajeet-13 Date: Tue, 20 Jan 2026 22:52:10 +0530 Subject: [PATCH 140/263] chore: ran pre-commit --- frappe/public/scss/common/indicator.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/scss/common/indicator.scss b/frappe/public/scss/common/indicator.scss index 2b3005d2d2..d10f964aef 100644 --- a/frappe/public/scss/common/indicator.scss +++ b/frappe/public/scss/common/indicator.scss @@ -6,7 +6,7 @@ align-items: center; } .list-row-col .indicator-pill { - max-width: 150px; + max-width: 150px; } .indicator::before { From 8514980253f474b29ec8705d0a203d7316e214ca Mon Sep 17 00:00:00 2001 From: vishwajeet-13 Date: Tue, 20 Jan 2026 23:05:15 +0530 Subject: [PATCH 141/263] fix: moved to list.scss --- frappe/public/scss/common/indicator.scss | 3 --- frappe/public/scss/desk/list.scss | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/frappe/public/scss/common/indicator.scss b/frappe/public/scss/common/indicator.scss index d10f964aef..da9e26dba0 100644 --- a/frappe/public/scss/common/indicator.scss +++ b/frappe/public/scss/common/indicator.scss @@ -5,9 +5,6 @@ display: inline-flex; align-items: center; } -.list-row-col .indicator-pill { - max-width: 150px; -} .indicator::before { content: ""; diff --git a/frappe/public/scss/desk/list.scss b/frappe/public/scss/desk/list.scss index aedbfb9105..fc833d8f5b 100644 --- a/frappe/public/scss/desk/list.scss +++ b/frappe/public/scss/desk/list.scss @@ -264,6 +264,10 @@ } } +.list-row-col .indicator-pill { + max-width: 150px; +} + $level-margin-right: 8px; .list-subject { From 3d2dc25ea3f1e6ec6bb67a55c6fce2815a1b14b0 Mon Sep 17 00:00:00 2001 From: AarDG10 Date: Wed, 21 Jan 2026 09:50:48 +0530 Subject: [PATCH 142/263] fix(UX): add fallback for better error message delivery --- frappe/public/js/frappe/file_uploader/FileUploader.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 { From cfb5ee0dbc86367b876639c773063cac5c7ff206 Mon Sep 17 00:00:00 2001 From: Aarol D'Souza <98270103+AarDG10@users.noreply.github.com> Date: Wed, 21 Jan 2026 10:41:43 +0530 Subject: [PATCH 143/263] fix(currency): sar unicode not supported yet (#36147) --- frappe/geo/country_info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/geo/country_info.json b/frappe/geo/country_info.json index 185d969412..7a1a4fa3b2 100644 --- a/frappe/geo/country_info.json +++ b/frappe/geo/country_info.json @@ -2359,7 +2359,7 @@ "currency_fraction": "Halala", "currency_fraction_units": 100, "currency_name": "Saudi Riyal", - "currency_symbol": "\u20C1", + "currency_symbol": "\u0631.\u0633", "number_format": "#,###.##", "timezones": [ "Asia/Riyadh" From cd41c054a6260e04e16282a0e6db60dc0011d275 Mon Sep 17 00:00:00 2001 From: Smit Vora Date: Wed, 21 Jan 2026 10:56:18 +0530 Subject: [PATCH 144/263] fix: save error message for prepared report in `code` field --- frappe/core/doctype/prepared_report/prepared_report.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, From 04b5076fbbacd41ea96f12b004ae0d7e2d68e76a Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Wed, 21 Jan 2026 11:44:06 +0530 Subject: [PATCH 145/263] test: remove unsupported `format:` from test (#36151) --- cypress/integration/customize_form.js | 1 - 1 file changed, 1 deletion(-) 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": "", }; From b23c650bd928b9646ccf14b9da32a995a572fb63 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Wed, 21 Jan 2026 11:54:32 +0530 Subject: [PATCH 146/263] ci: fix generate POT workflow (#36023) Probably also need to reconfigure PRs for v16 branch (?) --- .github/workflows/generate-pot-file.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/generate-pot-file.yml b/.github/workflows/generate-pot-file.yml index 8f46aaa15e..178beadb1c 100644 --- a/.github/workflows/generate-pot-file.yml +++ b/.github/workflows/generate-pot-file.yml @@ -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 From 9b34838adbfe1875cc7a1d8fd63a9b0d55ceeb3b Mon Sep 17 00:00:00 2001 From: Joseph Adams <105917501+josephadamsdev@users.noreply.github.com> Date: Wed, 21 Jan 2026 07:48:49 +0100 Subject: [PATCH 147/263] fix: RTL direction for login form inputs (#35782) * fix: RTL direction for login form inputs * Fix RTL overlap for login password field * Fix login RTL alignment * fix: refine RTL login input layout --------- Co-authored-by: josephadamsdev --- frappe/public/scss/login.bundle.scss | 8 ++++++++ frappe/www/login.html | 12 +++++++----- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/frappe/public/scss/login.bundle.scss b/frappe/public/scss/login.bundle.scss index 6e11610175..12b2439df7 100644 --- a/frappe/public/scss/login.bundle.scss +++ b/frappe/public/scss/login.bundle.scss @@ -76,6 +76,7 @@ body { } .forgot-password-message { + /* rtl:ignore */ text-align: right; line-height: 1; @@ -112,6 +113,13 @@ body { } } + .password-field { + input[dir="rtl"] { + /* rtl:ignore */ + padding-left: 3.5rem; + } + } + .btn-login-option { @include get_textstyle("base", "medium"); color: var(--text-gray-700); diff --git a/frappe/www/login.html b/frappe/www/login.html index 0759169b65..3fe29e14d3 100644 --- a/frappe/www/login.html +++ b/frappe/www/login.html @@ -1,13 +1,15 @@ {% extends "templates/web.html" %} {% block navbar %}{% endblock %} +{% set input_dir = "rtl" if is_rtl() else "ltr" %} + {% macro email_login_body() -%} {% if not disable_user_pass_login or (ldap_settings and ldap_settings.enabled) %}
" 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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "" @@ -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:1273 #: 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 "" @@ -15072,9 +15230,9 @@ msgstr "" #: 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/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:1136 msgid "Loading" msgstr "Memuat" @@ -15091,7 +15249,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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" +#. 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:947 #: 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 "" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "" @@ -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 @@ -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 "" @@ -17592,7 +17774,7 @@ 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/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,9 +18698,9 @@ 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:1884 msgid "PDF" msgstr "" @@ -18520,7 +18709,9 @@ 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 "" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20385,11 @@ 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 "" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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" @@ -23331,11 +23533,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 +23563,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 +23603,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 +23633,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 +23690,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 +23753,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 +23792,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 +23886,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 +23896,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 +23923,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 +23959,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 +24007,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 +24033,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:2199 msgid "Set Level" msgstr "" @@ -23867,8 +24076,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 +24097,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 +24206,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 +24230,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 +24242,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "Atur Email Otomatis" @@ -24067,13 +24276,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 +24291,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 +24351,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 +24400,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 +24452,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 +24572,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 +24714,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 +24837,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 +25012,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 +25051,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 +25106,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 +25145,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 +25153,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 +25221,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 +25394,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 +25432,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 +25546,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 +25560,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 +25581,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:268 #: 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 +25618,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 +25642,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 +25672,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 +25707,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 +25754,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 +25779,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 +25804,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 +25845,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 +25858,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 +25927,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 +25937,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 +26064,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 @@ -25950,6 +26155,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 +26176,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 +26217,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 +26226,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 +26244,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 +26252,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 +26276,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/form/templates/form_sidebar.html:123 #: 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/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 +26370,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 +26466,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 +26518,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 +26674,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 +26686,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 +26763,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 +26771,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -26520,7 +26780,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 +26792,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 +26804,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26560,7 +26820,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 +26828,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 +26901,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 +26929,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 +26945,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 +26966,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 +26991,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 +27014,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:2280 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 +27056,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:1069 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26812,7 +27072,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:881 msgid "This report was generated {0}." msgstr "Laporan ini dihasilkan {0}." @@ -26836,7 +27096,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 +27140,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 +27171,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 +27179,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 +27262,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 +27293,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 +27368,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 +27391,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 +27477,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:882 msgid "To get the updated report, click on {0}." msgstr "Untuk mendapatkan laporan yang diperbarui, klik pada {0}." @@ -27273,31 +27530,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 +27573,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 +27581,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 +27649,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "" @@ -27423,7 +27667,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 +27767,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 +27803,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2274 +#: frappe/public/js/frappe/views/reports/query_report.js:2341 msgid "Translate Data" msgstr "" @@ -27570,7 +27814,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 +27850,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 +27899,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 +27946,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 +27960,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 +27969,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 @@ -27898,7 +28144,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 +28160,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 +28181,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:945 msgid "Unfollow" msgstr "Berhenti mengikuti" @@ -28022,9 +28268,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 +28304,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 +28328,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 +28336,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 +28413,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 "" @@ -28175,7 +28422,7 @@ msgstr "" #: 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 +28434,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 +28463,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 +28475,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 +28528,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 +28600,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 +28634,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 +28662,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 +28802,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 +28818,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:2027 +#: 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 +28903,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 +28937,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 +28966,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 +28995,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 +29076,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 +29105,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 +29132,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 +29156,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 +29181,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 +29204,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 +29213,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 +29225,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 +29239,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 +29275,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 +29287,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 +29324,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 +29333,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 +29353,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 +29389,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 +29437,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 +29446,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 +29530,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 +29627,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 +29682,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 +29747,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 +29839,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 +29869,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 +29886,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 +30007,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 +30028,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 +30040,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 +30075,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 "" @@ -29869,11 +30124,8 @@ 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 "" @@ -29888,8 +30140,10 @@ msgstr "" 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 "" @@ -29905,7 +30159,7 @@ msgstr "" 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 +30188,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 +30211,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 +30226,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:1272 msgid "Y Field" msgstr "" @@ -30019,10 +30274,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 +30290,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30329,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 +30337,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 +30345,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 +30372,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 +30380,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 +30404,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 +30412,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 +30425,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 +30449,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 +30503,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 +30533,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 +30563,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 +30571,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 +30583,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 +30631,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 +30651,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 +30660,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 +30675,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 +30688,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 "" @@ -30479,7 +30740,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 +30787,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 +30864,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 +30906,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 +30928,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 +30947,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 +30970,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 +30986,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 +31012,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 +31070,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 +31080,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 +31122,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 +31187,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 +31207,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 +31260,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 +31283,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 +31353,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 +31426,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 +31510,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 +31612,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 +31654,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 +31675,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 +31689,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 +31729,11 @@ msgstr "" msgid "{0} Map" msgstr "" -#: frappe/public/js/frappe/form/quick_entry.js:122 +#: frappe/public/js/frappe/form/quick_entry.js:135 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 +31741,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:984 msgid "{0} Reports" msgstr "" @@ -31476,11 +31754,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 +31820,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 +31849,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 +31878,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 +31915,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 +31936,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 +31948,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 +31964,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 +31982,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 +32024,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 +32048,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 +32061,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 +32093,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 +32106,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 +32120,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 +32191,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 +32236,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 +32269,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 +32294,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 +32308,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 +32316,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 +32384,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 +32396,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 +32404,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 +32420,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,7 +32432,7 @@ 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}" @@ -32091,79 +32440,51 @@ msgstr "{0}, Baris {1}" 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 +32492,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 +32557,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:1330 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:222 msgid "{1} saved" msgstr "" @@ -32220,11 +32585,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..d32a539724 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:49\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:983 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" "\n" -msgstr "

Aiuto Formato Stampa

\n" -"
\n" -"

Introduzione

\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.

\n" -"

Per la stilizzazione, è fornito il framework CSS Bootstrap e puoi usufruire dell'intera gamma di classi.

\n" -"
\n" -"

Riferimenti

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

Esempio

\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" -"
\n" -"

Funzioni Comuni

\n" -"\n" -"\t\n" -"\t\t\n" -"\t\t\t\n" -"\t\t\t\n" -"\t\t\n" -"\t\t\n" -"\t\t\t\n" -"\t\t\t\n" -"\t\t\n" -"\t\n" -"
doc.get_formatted(\"[fieldname]\", [parent_doc])Ottieni il valore del documento formattato come Data, Valuta, ecc. Passa il doc padre per i campi di tipo valuta.
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\")Recupera il valore da un altro documento.
\n" +msgstr "" #. Description of the 'Template' (Code) field in DocType 'Address Template' #: frappe/contacts/doctype/address_template/address_template.json @@ -676,7 +611,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 "" @@ -690,7 +625,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 "" @@ -1009,7 +944,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1941 +#: frappe/model/document.py:1940 msgid "Action Failed" msgstr "" @@ -1058,13 +993,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:870 msgid "Actions" msgstr "" @@ -1121,20 +1056,20 @@ msgstr "" msgid "Activity Log" msgstr "Log Attività" -#: 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 "Aggiungi" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:456 msgid "Add / Remove Columns" msgstr "Aggiungi / Rimuovi colonne" @@ -1142,11 +1077,11 @@ msgstr "Aggiungi / Rimuovi colonne" msgid "Add / Update" msgstr "Aggiungi / Aggiorna" -#: frappe/core/page/permission_manager/permission_manager.js:492 +#: frappe/core/page/permission_manager/permission_manager.js:493 msgid "Add A New Rule" msgstr "Aggiungi Una Nuova Regola" -#: 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 "Aggiungi Allegato" @@ -1166,11 +1101,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 "" @@ -1179,8 +1118,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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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 @@ -1224,11 +1163,7 @@ msgstr "Aggiungi Gruppo" msgid "Add Indexes" msgstr "" -#: frappe/public/js/frappe/form/grid.js:66 -msgid "Add Multiple" -msgstr "Aggiunta Multipla" - -#: frappe/core/page/permission_manager/permission_manager.js:495 +#: frappe/core/page/permission_manager/permission_manager.js:496 msgid "Add New Permission Rule" msgstr "" @@ -1241,17 +1176,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 "Aggiungi Ruoli" -#: 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 "" @@ -1270,16 +1201,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 "" @@ -1329,19 +1260,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 "" @@ -1359,6 +1290,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" @@ -1372,6 +1307,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 "" @@ -1390,7 +1329,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 "" @@ -1430,8 +1369,8 @@ msgstr "Aggiunge HTML nella sezione <head> della pagina web, utilizzato pr 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 "Aggiunto {0} ({1})" @@ -1521,7 +1460,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 "" @@ -1548,11 +1487,11 @@ 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 "" @@ -1573,8 +1512,8 @@ msgstr "" msgid "Advanced Control" msgstr "Controllo Avanzato" -#: 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 "Ricerca Avanzata" @@ -1655,7 +1594,7 @@ msgstr "" msgid "Alert" msgstr "" -#: frappe/database/query.py:2147 +#: frappe/database/query.py:2226 msgid "Alias must be a string" msgstr "" @@ -1679,6 +1618,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' @@ -1711,7 +1659,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 "" @@ -1723,11 +1671,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 "" @@ -2038,7 +1986,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 "" @@ -2072,13 +2020,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 "" @@ -2173,7 +2169,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:586 +#: frappe/model/document.py:585 msgid "Amendment Not Allowed" msgstr "" @@ -2186,7 +2182,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 "" @@ -2237,7 +2233,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 "" @@ -2250,7 +2246,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 "" @@ -2300,11 +2296,11 @@ msgstr "Nome dell'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 "" @@ -2378,7 +2374,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 "" @@ -2387,6 +2383,10 @@ msgstr "" msgid "Apply Filters" msgstr "Applica Filtri" +#: 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 @@ -2426,7 +2426,7 @@ msgstr "" msgid "Apply to all Documents Types" msgstr "" -#: frappe/model/workflow.py:322 +#: frappe/model/workflow.py:343 msgid "Applying: {0}" msgstr "" @@ -2434,18 +2434,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 "Applicazioni" -#. 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" @@ -2468,16 +2461,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 "" @@ -2496,19 +2489,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 "Vuoi davvero annullare le modifiche?" -#: frappe/public/js/frappe/views/reports/query_report.js:980 +#: frappe/public/js/frappe/views/reports/query_report.js:997 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 "" @@ -2528,7 +2521,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 "" @@ -2557,7 +2550,7 @@ 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." @@ -2577,7 +2570,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 "" @@ -2590,7 +2583,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 "" @@ -2729,7 +2722,7 @@ msgstr "" msgid "Asynchronous" msgstr "Asincrono" -#: 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 "" @@ -2754,7 +2747,7 @@ msgstr "" msgid "Attach" msgstr "Allega" -#: frappe/public/js/frappe/views/communication.js:146 +#: frappe/public/js/frappe/views/communication.js:173 msgid "Attach Document Print" msgstr "" @@ -2852,19 +2845,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:132 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:135 +#: frappe/public/js/frappe/form/print_utils.js:148 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 "" @@ -2990,7 +2990,7 @@ msgstr "" #. 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 @@ -3189,11 +3189,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,7 +3207,7 @@ msgstr "B1" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B10" -msgstr "B10" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -3299,17 +3294,12 @@ msgstr "Colore di Sfondo" 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 "Processi in Background" @@ -3422,8 +3412,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 "" @@ -3447,6 +3437,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" @@ -3514,9 +3506,9 @@ msgstr "" #. 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 "" @@ -3585,7 +3577,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Bot" -msgstr "Bot" +msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:126 msgid "Both DocType and Name required" @@ -3644,18 +3636,11 @@ msgstr "HTML Brand" msgid "Brand Image" msgstr "Immagine del Brand" -#. 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" @@ -3727,7 +3712,7 @@ msgstr "Eliminazione in Blocco" 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 "" @@ -3748,7 +3733,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 "" @@ -3760,7 +3745,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 "" @@ -3844,7 +3829,7 @@ 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" @@ -3879,7 +3864,7 @@ msgstr "" #: 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 @@ -3897,7 +3882,7 @@ msgstr "" #: 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' @@ -3909,7 +3894,7 @@ msgstr "Cache" msgid "Cache Cleared" msgstr "Cache Svuotata" -#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255 msgid "Calculate" msgstr "" @@ -3959,12 +3944,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 "Fotocamera" #. 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" @@ -3976,11 +3961,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 "" @@ -4012,7 +3997,7 @@ msgstr "" msgid "Cancel" msgstr "Annulla" -#: 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 "Annulla" @@ -4022,11 +4007,11 @@ msgctxt "Secondary button in warning dialog" msgid "Cancel" msgstr "Annulla" -#: 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 "" @@ -4038,7 +4023,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 "" @@ -4071,7 +4056,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 "" @@ -4079,7 +4064,7 @@ msgstr "" msgid "Cannot Download Report due to insufficient permissions" msgstr "" -#: frappe/client.py:455 +#: frappe/client.py:504 msgid "Cannot Fetch Values" msgstr "" @@ -4087,7 +4072,7 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1266 +#: frappe/model/base_document.py:1283 msgid "Cannot Update After Submit" msgstr "" @@ -4107,11 +4092,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 "" @@ -4123,7 +4108,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 "" @@ -4131,10 +4116,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 "" @@ -4143,15 +4132,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 "" @@ -4162,11 +4151,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 "" @@ -4194,7 +4183,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 "" @@ -4207,7 +4196,7 @@ msgstr "Impossibile modificare i filtri per i grafici standard" msgid "Cannot edit filters for standard number cards" msgstr "" -#: frappe/client.py:170 +#: frappe/client.py:176 msgid "Cannot edit standard fields" msgstr "" @@ -4223,15 +4212,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 "" @@ -4243,7 +4232,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 "" @@ -4268,7 +4257,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 "" @@ -4288,7 +4277,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 "Cattura" @@ -4302,7 +4291,7 @@ msgstr "Scheda" 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 "" @@ -4331,17 +4320,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" @@ -4430,7 +4421,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 "Nome del Grafico" @@ -4495,6 +4486,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 "" @@ -4546,7 +4543,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 "" @@ -4556,7 +4553,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 "" @@ -4564,7 +4561,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 "Scegli un blocco o scrivi" @@ -4584,10 +4581,6 @@ msgstr "Scegli un icona" 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 @@ -4604,11 +4597,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 "" @@ -4616,7 +4609,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 "" @@ -4642,7 +4635,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 "" @@ -4710,7 +4703,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 "Fai clic per ordinare per {0}" @@ -4818,7 +4811,7 @@ msgstr "Script del Client" #: 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 "Vicino" @@ -4828,7 +4821,7 @@ msgstr "Vicino" 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 "" @@ -4884,12 +4877,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 "Riduci" -#: frappe/public/js/frappe/views/reports/query_report.js:2143 +#: frappe/public/js/frappe/views/reports/query_report.js:2199 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4946,7 +4939,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:1280 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4957,7 +4950,7 @@ msgstr "Colore" #. Label of the column (Data) field in DocType 'Recorder Suggested Index' #: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json -#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7 +#: frappe/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" @@ -5002,11 +4995,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 "" @@ -5044,12 +5037,12 @@ msgstr "" #. 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 @@ -5196,12 +5189,12 @@ msgstr "" msgid "Complete By" msgstr "Completato Da" -#: 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 "" @@ -5216,7 +5209,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 "" @@ -5307,7 +5300,7 @@ msgstr "" msgid "Configure Chart" msgstr "Configura Grafico" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:408 msgid "Configure Columns" msgstr "" @@ -5396,8 +5389,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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 msgid "Connected to QZ Tray!" msgstr "" @@ -5515,7 +5508,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 @@ -5584,11 +5577,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 "Copiato negli appunti." -#: 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 "" @@ -5600,12 +5593,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 "Copia negli Appunti" @@ -5626,7 +5619,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 "" @@ -5634,7 +5627,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 "" @@ -5642,11 +5635,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 "" @@ -5654,7 +5647,7 @@ msgstr "" msgid "Could not start up:" msgstr "Impossibile avviare:" -#: 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 "Impossibile salvare, controlla i dati inseriti" @@ -5706,7 +5699,7 @@ msgstr "" msgid "Country" msgstr "" -#: frappe/utils/__init__.py:132 +#: frappe/utils/__init__.py:123 msgid "Country Code Required" msgstr "" @@ -5733,15 +5726,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:1312 +#: frappe/public/js/frappe/views/workspace/workspace.js:531 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Creare" @@ -5754,13 +5748,13 @@ msgstr "Crea e Continua" msgid "Create Address" msgstr "Crea Indirizzo" -#: 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 "Crea Scheda" -#: 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:1239 msgid "Create Chart" msgstr "Crea Grafico" @@ -5794,7 +5788,7 @@ msgstr "Crea Log" msgid "Create New" msgstr "Crea Nuovo" -#: 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 "Crea Nuovo" @@ -5807,7 +5801,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "Crea Nuova Bacheca Kanban" -#: frappe/public/js/frappe/list/list_filter.js:101 +#: frappe/public/js/frappe/list/list_filter.js:118 msgid "Create Saved Filter" msgstr "" @@ -5823,18 +5817,18 @@ msgstr "Crea un Nuovo Formato" msgid "Create a Reminder" msgstr "Crea un Promemoria" -#: 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 "Crea un nuovo ..." -#: 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 nuovo record" -#: 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 "Crea un nuovo {0}" @@ -5851,7 +5845,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "Crea o Modifica Flusso di Lavoro" -#: 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 il tuo primo {0}" @@ -5877,6 +5871,14 @@ msgstr "" msgid "Created By" msgstr "Creato Da" +#: 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 "" @@ -5904,7 +5906,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Cron" -msgstr "Cron" +msgstr "" #. Label of the cron_format (Data) field in DocType 'Scheduled Job Type' #. Label of the cron_format (Data) field in DocType 'Server Script' @@ -6081,15 +6083,15 @@ msgstr "" msgid "Custom Field" msgstr "Campo Personalizzato" -#: 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 "" @@ -6115,7 +6117,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 "" @@ -6186,11 +6188,11 @@ msgstr "" msgid "Custom Translation" msgstr "Traduzione Personalizzata" -#: 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 "" @@ -6213,26 +6215,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 "Personalizza" -#: 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 "Personalizza" @@ -6297,7 +6299,7 @@ msgstr "DESCRIZIONE" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "DLE" -msgstr "DLE" +msgstr "" #: frappe/templates/print_formats/standard_macros.html:211 msgid "DRAFT" @@ -6329,7 +6331,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 "" @@ -6386,8 +6388,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 "" @@ -6637,7 +6639,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 "" @@ -6834,11 +6836,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 "" @@ -6895,11 +6897,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 @@ -6907,7 +6910,7 @@ msgstr "" msgid "Delete" msgstr "Eliminare" -#: 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 "Eliminare" @@ -6921,10 +6924,6 @@ msgstr "Eliminare" 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 @@ -6954,7 +6953,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:964 msgid "Delete and Generate New" msgstr "" @@ -6982,6 +6989,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" @@ -6996,16 +7007,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' @@ -7036,7 +7051,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 "Eliminato!" @@ -7143,6 +7158,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 @@ -7225,16 +7241,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" @@ -7264,11 +7285,11 @@ msgstr "" msgid "Detect CSV type" msgstr "Rileva 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 "" -#: frappe/core/page/permission_manager/permission_manager.js:438 +#: frappe/core/page/permission_manager/permission_manager.js:439 msgid "Did not remove" msgstr "" @@ -7416,10 +7437,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 "Annulla" @@ -7433,11 +7455,11 @@ msgctxt "Discard Email" msgid "Discard" msgstr "Annulla" -#: 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 "Annullare?" @@ -7481,7 +7503,7 @@ msgstr "Rimuovi" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json msgid "Display" -msgstr "Display" +msgstr "" #. Label of the depends_on (Code) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7511,11 +7533,11 @@ msgstr "Non creare un nuovo utente" 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 "" @@ -7523,7 +7545,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 "" @@ -7578,7 +7600,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' @@ -7601,7 +7622,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 @@ -7614,7 +7634,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 "" @@ -7682,10 +7702,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 "" @@ -7703,15 +7719,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 "" @@ -7725,7 +7741,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 "" @@ -7787,19 +7803,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 "" @@ -7818,8 +7834,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 @@ -7837,7 +7853,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:512 +#: frappe/model/document.py:511 msgid "Document Queued" msgstr "" @@ -7941,7 +7957,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 @@ -7961,11 +7977,11 @@ msgstr "Tipo Documento" 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 "" @@ -7994,11 +8010,11 @@ 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 "" @@ -8006,15 +8022,15 @@ msgstr "" 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 "Il documento è in bozza" @@ -8026,11 +8042,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 "" @@ -8046,10 +8062,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" @@ -8187,7 +8199,7 @@ msgstr "Scarica Link" msgid "Download PDF" msgstr "Scarica il pdf" -#: frappe/public/js/frappe/views/reports/query_report.js:843 +#: frappe/public/js/frappe/views/reports/query_report.js:860 msgid "Download Report" msgstr "Scarica Report" @@ -8271,7 +8283,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 "Duplicato" @@ -8279,19 +8291,15 @@ msgstr "Duplicato" 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 "Duplica Riga" - -#: frappe/public/js/frappe/form/form.js:210 +#: frappe/public/js/frappe/form/form.js:211 msgid "Duplicate current row" msgstr "" @@ -8299,6 +8307,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' @@ -8386,9 +8406,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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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 @@ -8399,7 +8420,7 @@ msgstr "" msgid "Edit" msgstr "Modifica" -#: 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 "Modifica" @@ -8409,7 +8430,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Modifica" -#: 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 "Modifica" @@ -8430,15 +8451,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 "Modifica HTML personalizzato" -#: frappe/public/js/frappe/form/toolbar.js:652 +#: frappe/public/js/frappe/form/toolbar.js:655 msgid "Edit DocType" msgstr "Modifica 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 "Modifica DocType" @@ -8452,7 +8473,7 @@ msgstr "Modifica Esistente" msgid "Edit Filters" msgstr "Modifica Filtri" -#: 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 "Modifica Filtri" @@ -8465,7 +8486,7 @@ msgstr "Modifica Piè di Pagina" msgid "Edit Format" msgstr "Modifica formato" -#: frappe/public/js/frappe/form/quick_entry.js:326 +#: frappe/public/js/frappe/form/quick_entry.js:373 msgid "Edit Full Form" msgstr "" @@ -8523,7 +8544,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 "" @@ -8546,11 +8567,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 "Modifica la tua risposta" @@ -8606,6 +8627,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' @@ -8621,12 +8643,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 @@ -8661,7 +8685,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 "" @@ -8859,7 +8883,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 "" @@ -8898,7 +8922,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:2151 +#: frappe/database/query.py:2230 msgid "Empty alias is not allowed" msgstr "" @@ -8906,7 +8930,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:2094 +#: frappe/database/query.py:2172 msgid "Empty string arguments are not allowed" msgstr "" @@ -9225,11 +9249,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 "" @@ -9256,6 +9280,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 @@ -9286,7 +9314,7 @@ msgstr "" msgid "Entity Type" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:1256 +#: frappe/public/js/frappe/list/base_list.js:1273 #: frappe/public/js/frappe/ui/filters/filter.js:16 msgid "Equals" msgstr "Uguali" @@ -9320,7 +9348,7 @@ msgstr "Uguali" 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 "Errore" @@ -9340,7 +9368,7 @@ msgstr "Log Errori" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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 "" @@ -9378,15 +9406,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 "" @@ -9402,15 +9430,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 "" @@ -9420,6 +9448,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' @@ -9438,6 +9472,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 @@ -9463,11 +9502,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 "Eventi" -#: frappe/desk/doctype/event/event.py:278 +#: frappe/desk/doctype/event/event.py:328 msgid "Events in Today's Calendar" msgstr "" @@ -9489,6 +9528,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 "" @@ -9559,7 +9599,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2162 +#: frappe/public/js/frappe/views/reports/query_report.js:2223 msgid "Execution Time: {0} sec" msgstr "" @@ -9580,21 +9620,21 @@ msgstr "" msgid "Expand" msgstr "Espandi" -#: 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 "Espandi" -#: frappe/public/js/frappe/views/reports/query_report.js:2143 +#: frappe/public/js/frappe/views/reports/query_report.js:2199 #: 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 "" @@ -9646,20 +9686,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:1899 +#: frappe/public/js/frappe/views/reports/report_view.js:1634 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Esportare" -#: 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 "Esportare" -#: 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 "" @@ -9698,11 +9739,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 "" @@ -9718,6 +9759,10 @@ msgstr "" msgid "Export not allowed. You need {0} role to export." msgstr "Esportazione non consentita. È necessario il ruolo {0} per esportare." +#: 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 @@ -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:1958 #: 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:1353 #: 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:945 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 "" @@ -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:2220 #: 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:1919 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:902 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:1716 +msgid "Hidden columns include:
{0}" msgstr "" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' @@ -12137,7 +12184,7 @@ msgstr "Suggerimento: Includi simboli, numeri e lettere maiuscole nella password #: 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 @@ -12220,18 +12267,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" @@ -12282,7 +12329,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' @@ -12303,11 +12349,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" @@ -12318,6 +12369,10 @@ msgstr "" msgid "Icon Type" msgstr "" +#: frappe/desk/page/desktop/desktop.js:1004 +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" @@ -12332,7 +12387,7 @@ 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' @@ -12349,13 +12404,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 "" @@ -12482,12 +12537,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 "Se impostato, solo gli utenti con questi ruoli possono accedere a questo grafico. Se non impostato, verranno utilizzate le autorizzazioni DocType o Report." +#: 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 "" @@ -12587,7 +12650,7 @@ msgstr "" msgid "Ignored Apps" msgstr "" -#: frappe/model/workflow.py:202 +#: frappe/model/workflow.py:223 msgid "Illegal Document Status for {0}" msgstr "" @@ -12653,11 +12716,11 @@ msgstr "Vista Immagine" 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 "" @@ -12691,7 +12754,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 "" @@ -12709,11 +12772,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 "Importa" -#: 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 "Importa" @@ -12936,15 +13000,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:1690 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 msgid "Include indentation" msgstr "" @@ -13011,11 +13075,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 "" @@ -13067,7 +13131,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 "" @@ -13097,7 +13161,7 @@ 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 @@ -13114,15 +13178,15 @@ msgstr "Inserisci Sopra" #. 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:1964 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 "" @@ -13152,8 +13216,8 @@ msgstr "Inserisci Stile" 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 "" @@ -13179,15 +13243,15 @@ msgstr "App Installate" 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 "" @@ -13218,7 +13282,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 "Int" +msgstr "" #. Name of a DocType #: frappe/integrations/doctype/integration_request/integration_request.json @@ -13243,7 +13307,7 @@ msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Inter" -msgstr "Inter" +msgstr "" #. Label of the interest (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -13255,7 +13319,7 @@ msgstr "Interessi" msgid "Intermediate" msgstr "" -#: frappe/public/js/frappe/request.js:235 +#: frappe/public/js/frappe/request.js:233 msgid "Internal Server Error" msgstr "" @@ -13264,6 +13328,11 @@ msgstr "" msgid "Internal record of document shares" msgstr "Registro interno condivisioni documenti" +#. 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" @@ -13303,13 +13372,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 "" @@ -13349,7 +13418,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:342 +#: frappe/database/query.py:345 msgid "Invalid DocType: {0}" msgstr "" @@ -13357,7 +13426,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 "" @@ -13365,8 +13435,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 "" @@ -13390,7 +13460,7 @@ msgstr "Link non Valido" 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 "" @@ -13398,7 +13468,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 "" @@ -13409,8 +13479,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 "" @@ -13422,7 +13492,7 @@ msgstr "" msgid "Invalid Output Format" msgstr "" -#: frappe/model/base_document.py:126 +#: frappe/model/base_document.py:128 msgid "Invalid Override" msgstr "" @@ -13435,11 +13505,11 @@ msgstr "" msgid "Invalid Password" msgstr "Password non Valida" -#: 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 "" @@ -13448,7 +13518,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 "" @@ -13479,7 +13549,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 "" @@ -13487,19 +13557,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 "" @@ -13507,18 +13577,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 "" @@ -13527,11 +13601,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 "" @@ -13539,11 +13613,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 "" @@ -13551,11 +13625,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 "" @@ -13563,7 +13637,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 "" @@ -13580,19 +13654,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 "" @@ -13616,11 +13690,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 "" @@ -13637,24 +13711,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 "Valori non validi per i campi:" -#: 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 "" @@ -13782,7 +13856,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 "" @@ -13853,7 +13927,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 "" @@ -14020,7 +14094,7 @@ 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 @@ -14046,7 +14120,7 @@ msgstr "" #. 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' @@ -14098,8 +14172,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 "Vai al campo" @@ -14115,7 +14189,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' @@ -14422,7 +14496,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 "" @@ -14445,7 +14519,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 "Lingua" @@ -14491,6 +14565,14 @@ msgstr "" msgid "Last Active" msgstr "Ultimo Attivo" +#: 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" @@ -14615,6 +14697,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 "" @@ -14642,9 +14729,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 @@ -14738,7 +14831,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 @@ -14767,7 +14860,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 "" @@ -14789,7 +14882,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 "" @@ -14830,7 +14923,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:1273 #: frappe/public/js/frappe/ui/filters/filter.js:18 msgid "Like" msgstr "" @@ -14854,7 +14947,7 @@ msgstr "" msgid "Limit" msgstr "" -#: frappe/database/query.py:299 +#: frappe/database/query.py:302 msgid "Limit must be a non-negative integer" msgstr "" @@ -14919,7 +15012,7 @@ msgstr "" #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link DocType" -msgstr "Link DocType" +msgstr "" #. Label of the link_doctype (Link) field in DocType 'Dynamic Link' #: frappe/core/doctype/dynamic_link/dynamic_link.json @@ -14980,7 +15073,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" @@ -14998,7 +15091,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 "Tipo Collegamento" @@ -15041,6 +15134,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 @@ -15062,8 +15156,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 "Lista" @@ -15093,7 +15187,7 @@ msgstr "" msgid "List Settings" msgstr "Impostazioni 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 "Impostazioni Lista" @@ -15107,7 +15201,7 @@ msgstr "Vista Elenco" 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 "" @@ -15134,7 +15228,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 "" @@ -15162,9 +15256,9 @@ msgstr "" #: 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/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:1136 msgid "Loading" msgstr "Caricamento" @@ -15181,7 +15275,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -15192,7 +15286,8 @@ msgid "Loading..." msgstr "Caricamento..." #. 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 "" @@ -15265,6 +15360,11 @@ msgstr "" msgid "Login" msgstr "Login" +#. 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" @@ -15340,7 +15440,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 "" @@ -15407,8 +15507,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" @@ -15439,7 +15538,7 @@ msgstr "" msgid "Looks like you haven’t added any third party apps." msgstr "Sembra che tu non abbia aggiunto app di terze parti." -#: 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 "Sembra che tu non abbia ricevuto alcuna notifica." @@ -15589,7 +15688,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 "Campi obbligatori richiesti:" @@ -15651,7 +15750,7 @@ msgstr "Margine Superiore" 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 "" @@ -15703,9 +15802,12 @@ msgstr "Responsabile Marketing" #. 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 "Maschera" @@ -15767,7 +15869,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 "" @@ -15788,20 +15890,27 @@ msgstr "" msgid "Maximum {0} rows allowed" msgstr "" +#. 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:947 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:168 msgid "Me" msgstr "Io" #: 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" @@ -15845,12 +15954,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 "Menu" -#: 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 "" @@ -15884,13 +15993,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 "Messaggio" -#: 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 "Messaggio" @@ -15921,7 +16030,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 "" @@ -15951,7 +16060,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 "Meta" +msgstr "" #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" @@ -16018,7 +16127,7 @@ msgstr "" msgid "Method" msgstr "" -#: frappe/__init__.py:467 +#: frappe/__init__.py:465 msgid "Method Not Allowed" msgstr "Metodo Non Consentito" @@ -16107,7 +16216,7 @@ msgstr "Signora" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1541 +#: frappe/core/doctype/doctype/doctype.py:1555 msgid "Missing Field" msgstr "" @@ -16192,7 +16301,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 @@ -16239,9 +16348,8 @@ msgstr "Modulo Primo Avvio" #. 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 "Profilo del Modulo" @@ -16258,7 +16366,7 @@ msgstr "" msgid "Module to Export" msgstr "" -#: frappe/modules/utils.py:280 +#: frappe/modules/utils.py:323 msgid "Module {} not found" msgstr "" @@ -16373,7 +16481,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 "Più Usato" @@ -16388,7 +16496,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 "" @@ -16400,19 +16508,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 "" @@ -16424,7 +16532,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 "" @@ -16542,7 +16650,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 "" @@ -16554,7 +16662,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 "" @@ -16593,7 +16701,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:268 +#: frappe/model/naming.py:266 msgid "Naming Series mandatory" msgstr "" @@ -16617,11 +16725,6 @@ msgstr "" msgid "Navbar Settings" msgstr "Impostazioni Barra di Navigazione" -#. 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' @@ -16635,39 +16738,44 @@ msgstr "Modello di Barra di Navigazione" 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 "" @@ -16689,6 +16797,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 @@ -16705,7 +16814,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 "" @@ -16721,8 +16830,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 "" @@ -16771,7 +16880,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 "Nuovo Nome" @@ -16792,8 +16901,8 @@ msgstr "" msgid "New Password" msgstr "Nuova Password" -#: 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 "" @@ -16820,8 +16929,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 "" @@ -16829,7 +16938,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 "" @@ -16872,32 +16981,32 @@ msgstr "I nuovi utenti dovranno essere registrati manualmente dai gestori del si 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:190 +#: 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 "Nuovo {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 "" @@ -16909,7 +17018,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 "L'utente appena creato {0} non ha ruoli abilitati." @@ -16930,7 +17039,7 @@ msgstr "Responsabile 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 "Successivo" @@ -16957,12 +17066,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 "" @@ -17029,20 +17142,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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" @@ -17112,7 +17229,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 "Nessuna Immagine" @@ -17131,23 +17248,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 "Nessuna Nuova Notifica" -#: frappe/core/doctype/doctype/doctype.py:1778 +#: frappe/core/doctype/doctype/doctype.py:1792 msgid "No Permissions Specified" msgstr "" @@ -17167,11 +17284,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 "" @@ -17179,7 +17296,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 "" @@ -17187,7 +17304,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 "Nessun Ruolo Specificato" @@ -17203,7 +17320,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 "Nessun Evento Imminente" @@ -17223,7 +17340,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 "" @@ -17335,11 +17452,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 "" @@ -17348,7 +17465,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 "" @@ -17364,7 +17481,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 "" @@ -17372,7 +17489,7 @@ msgstr "" msgid "No rows" msgstr "Nessuna riga" -#: frappe/public/js/frappe/list/list_view.js:2376 +#: frappe/public/js/frappe/list/list_view.js:2404 msgid "No rows selected" msgstr "" @@ -17384,11 +17501,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 "" @@ -17400,7 +17518,7 @@ msgstr "" msgid "No {0} found" msgstr "Nessun {0} trovato" -#: 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 "Nessun {0} trovato con i filtri corrispondenti. Cancella i filtri per vedere tutti i {0}." @@ -17409,7 +17527,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 "Num." @@ -17452,12 +17570,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 "" @@ -17499,7 +17617,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 @@ -17508,7 +17626,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 "" @@ -17517,8 +17635,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 @@ -17552,15 +17670,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 "" @@ -17568,7 +17686,7 @@ msgstr "" msgid "Not active" msgstr "" -#: frappe/permissions.py:389 +#: frappe/permissions.py:395 msgid "Not allowed for {0}: {1}" msgstr "" @@ -17588,11 +17706,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 "" @@ -17605,11 +17723,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 "" @@ -17637,7 +17755,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 "" @@ -17669,7 +17787,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 "Nessuna Novità" @@ -17682,7 +17800,7 @@ 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/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" @@ -17693,11 +17811,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 "" @@ -17713,7 +17833,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 "Impostazioni di Notifica" @@ -17722,11 +17842,6 @@ msgstr "Impostazioni di Notifica" 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 "" @@ -17744,13 +17859,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 "" @@ -17986,7 +18103,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 "" @@ -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,9 +18724,9 @@ 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:1884 msgid "PDF" msgstr "PDF" @@ -18610,7 +18735,9 @@ 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" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20411,11 @@ 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 "" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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 "" @@ -23421,11 +23559,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 +23589,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 +23629,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 +23659,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 +23716,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 +23779,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 +23818,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 +23837,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 +23912,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 +23922,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 +23949,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 +23985,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 +24033,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 +24059,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:2199 msgid "Set Level" msgstr "" @@ -23957,8 +24102,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 +24123,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 +24232,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 +24256,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 +24268,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "Imposta E-mail Automatica" @@ -24157,13 +24302,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 +24317,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 +24377,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 +24426,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 +24478,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 +24598,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 +24740,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 +24863,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 +24874,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 +25038,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 +25077,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 +25120,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 +25132,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 +25171,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 +25179,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 +25247,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 +25296,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 +25420,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 +25458,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 +25572,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 +25586,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 +25607,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:268 #: 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 +25644,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 +25668,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 +25698,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 +25733,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 +25780,7 @@ msgstr "" msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:363 +#: frappe/model/workflow.py:384 msgid "Successful Transactions" msgstr "" @@ -25663,7 +25805,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 +25830,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 +25871,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 +25884,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 +25953,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 +25963,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 +26090,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 @@ -26040,6 +26181,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 +26202,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 +26243,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 +26252,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 +26270,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 +26278,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 +26302,17 @@ msgid "Tag Link" msgstr "" #: frappe/model/meta.py:59 -#: frappe/public/js/frappe/form/templates/form_sidebar.html:102 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:123 #: 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/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 +26396,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 +26492,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 +26544,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 "" @@ -26540,7 +26700,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 "" @@ -26552,6 +26712,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 "" @@ -26593,7 +26789,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 "Non ci sono eventi in programma per te." @@ -26601,7 +26797,7 @@ msgstr "Non ci sono eventi in programma per te." 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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -26610,7 +26806,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 "" @@ -26622,11 +26818,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 "Al momento non c'è nulla di nuovo da mostrare." @@ -26634,7 +26830,7 @@ msgstr "Al momento non c'è nulla di nuovo da mostrare." 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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26650,7 +26846,7 @@ msgstr "" msgid "There was an error saving filters" msgstr "Si è verificato un errore durante il salvataggio dei filtri" -#: frappe/public/js/frappe/form/sidebar/attachments.js:237 +#: frappe/public/js/frappe/form/sidebar/attachments.js:216 msgid "There were errors" msgstr "" @@ -26658,11 +26854,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 "" @@ -26731,11 +26927,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 "" @@ -26759,7 +26955,7 @@ msgstr "Questo grafico sarà disponibile a tutti gli utenti se questa opzione è 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 "" @@ -26775,15 +26971,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 "Questo documento contiene modifiche non salvate che potrebbero non apparire nel PDF finale.
Si consiglia di salvare il documento prima di stamparlo." -#: 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 "" @@ -26796,7 +26992,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 "Questa funzionalità è completamente nuova e ancora sperimentale" @@ -26821,11 +27017,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 "" @@ -26844,7 +27040,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26886,15 +27082,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:1069 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26902,7 +27098,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:881 msgid "This report was generated {0}." msgstr "" @@ -26926,7 +27122,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 "" @@ -26970,7 +27166,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure?" msgstr "Ciò interromperà immediatamente il lavoro e potrebbe essere pericoloso, ne sei sicuro?" -#: frappe/core/doctype/user/user.py:1322 +#: frappe/core/doctype/user/user.py:1325 msgid "Throttled" msgstr "" @@ -27001,6 +27197,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 @@ -27008,6 +27205,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 "" @@ -27090,11 +27288,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 "" @@ -27126,11 +27319,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 "" @@ -27201,7 +27394,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 @@ -27224,7 +27417,7 @@ msgstr "" msgid "Title Prefix" msgstr "Prefisso del Titolo" -#: frappe/core/doctype/doctype/doctype.py:1490 +#: frappe/core/doctype/doctype/doctype.py:1504 msgid "Title field must be a valid fieldname" msgstr "" @@ -27310,7 +27503,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:882 msgid "To get the updated report, click on {0}." msgstr "" @@ -27363,31 +27556,14 @@ msgstr "DaFare" 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 "Cambia Visualizzazione" - #: 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 "Cambia Barra Laterale" - -#. Label of a standard navbar item -#. Type: Action -#: frappe/hooks.py -msgid "Toggle Theme" -msgstr "Cambia Tema" - #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Token" @@ -27423,7 +27599,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 "" @@ -27431,15 +27607,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 "" @@ -27495,10 +27675,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "" @@ -27513,7 +27693,7 @@ msgstr "Totale Processi in Background" msgid "Total Errors (last 1 day)" msgstr "Errori Totali (ultimo giorno)" -#: frappe/public/js/frappe/ui/capture.js:259 +#: frappe/public/js/frappe/ui/capture.js:260 msgid "Total Images" msgstr "Immagini Totali" @@ -27613,7 +27793,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 "" @@ -27649,7 +27829,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2274 +#: frappe/public/js/frappe/views/reports/query_report.js:2341 msgid "Translate Data" msgstr "" @@ -27660,7 +27840,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 "" @@ -27696,7 +27876,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 "Albero" @@ -27745,8 +27925,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 "" @@ -27792,6 +27972,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' @@ -27805,6 +27986,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 @@ -27813,7 +27995,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 @@ -27856,14 +28038,14 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "UID" -msgstr "UID" +msgstr "" #. Label of the uidnext (Int) field in DocType 'Email Account' #. Label of the uidnext (Data) field in DocType 'IMAP Folder' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "UIDNEXT" -msgstr "UIDNEXT" +msgstr "" #. Label of the uidvalidity (Data) field in DocType 'Email Account' #. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' @@ -27902,7 +28084,7 @@ msgstr "" #: 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 @@ -27988,7 +28170,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 "Impossibile caricare la fotocamera." @@ -28004,7 +28186,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 "" @@ -28025,20 +28207,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 "Annulla" -#: 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:945 msgid "Unfollow" msgstr "" @@ -28112,9 +28294,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 "Deseleziona Tutto" @@ -28147,11 +28330,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 "" @@ -28171,7 +28354,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 "" @@ -28179,13 +28362,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 "" @@ -28256,7 +28439,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 "" @@ -28265,7 +28448,7 @@ msgstr "" #: 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 "" @@ -28277,11 +28460,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 "" @@ -28306,11 +28489,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 "" @@ -28318,12 +28501,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" @@ -28371,6 +28554,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 "" @@ -28442,7 +28626,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 "" @@ -28476,9 +28660,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' @@ -28505,11 +28688,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 @@ -28645,7 +28828,7 @@ msgstr "Immagine Utente" 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 "Menu Utente" @@ -28661,19 +28844,19 @@ msgid "User Permission" msgstr "Autorizzazione Utente" #. 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:2027 +#: frappe/public/js/frappe/views/reports/report_view.js:1766 msgid "User Permissions" msgstr "Autorizzazioni Utente" -#: 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 "Autorizzazioni Utente" -#: 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 "" @@ -28746,7 +28929,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 "" @@ -28780,27 +28963,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 "" @@ -28809,11 +28992,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 "" @@ -28838,18 +29021,17 @@ msgstr "" msgid "Username" msgstr "Nome Utente" -#: 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" @@ -28920,7 +29102,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 "Errore di Validazione" @@ -28949,7 +29131,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 @@ -28976,15 +29158,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 "" @@ -28996,7 +29182,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 "" @@ -29021,7 +29207,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 "" @@ -29038,20 +29230,20 @@ 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 "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Verdana" -msgstr "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 "" @@ -29059,7 +29251,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 "" @@ -29073,7 +29265,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 "" @@ -29109,7 +29301,7 @@ msgstr "Vista" 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 "" @@ -29121,7 +29313,7 @@ msgstr "Visualizza Permessi Documento" 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 "" @@ -29158,7 +29350,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 "" @@ -29167,14 +29359,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 "Visualizza il Sito 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 "" @@ -29190,7 +29379,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 "" @@ -29226,7 +29415,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 "" @@ -29274,7 +29463,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 "" @@ -29283,7 +29472,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 "" @@ -29367,7 +29556,7 @@ msgstr "Pagina Web" 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 "" @@ -29464,7 +29653,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" @@ -29519,7 +29708,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 "" @@ -29584,6 +29773,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" @@ -29671,15 +29865,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 "Cosa c'è di nuovo" @@ -29701,10 +29895,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 @@ -29722,7 +29912,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 "" @@ -29843,6 +30033,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" @@ -29860,11 +30054,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 "" @@ -29872,7 +30066,7 @@ msgstr "" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:384 +#: frappe/model/workflow.py:405 msgid "Workflow Status" msgstr "" @@ -29907,18 +30101,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 "Area di Lavoro" @@ -29959,11 +30150,8 @@ 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 "Impostazioni Area Lavoro" @@ -29978,8 +30166,10 @@ msgstr "" 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 "" @@ -29995,7 +30185,7 @@ msgstr "" 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 "" @@ -30024,11 +30214,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 "Scrivi" -#: frappe/model/base_document.py:1055 +#: frappe/model/base_document.py:1072 msgid "Wrong Fetch From value" msgstr "" @@ -30046,7 +30237,7 @@ msgstr "" 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 "" @@ -30061,19 +30252,19 @@ msgstr "Campi Asse 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:1272 msgid "Y Field" msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Yahoo Mail" -msgstr "Yahoo Mail" +msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Yandex.Mail" -msgstr "Yandex.Mail" +msgstr "" #. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' #. Label of the year (Data) field in DocType 'Company History' @@ -30109,10 +30300,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 @@ -30121,10 +30316,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "Sì" @@ -30160,7 +30355,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 "" @@ -30168,7 +30363,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 "" @@ -30176,11 +30371,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 "" @@ -30203,7 +30398,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 "" @@ -30211,10 +30406,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 "" @@ -30231,7 +30430,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 "" @@ -30239,7 +30438,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 "" @@ -30252,7 +30451,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 "" @@ -30276,10 +30475,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 "" @@ -30334,7 +30529,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 "" @@ -30364,6 +30559,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 "" @@ -30390,7 +30589,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 "" @@ -30399,11 +30597,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 "" @@ -30415,15 +30609,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 "" @@ -30459,7 +30657,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 "" @@ -30479,7 +30677,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 "" @@ -30488,7 +30686,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 "" @@ -30504,12 +30701,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 "" @@ -30517,7 +30714,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 "" @@ -30569,7 +30766,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 "" @@ -30616,7 +30813,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 "" @@ -30693,7 +30890,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 "" @@ -30735,7 +30932,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 "" @@ -30757,7 +30954,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 "" @@ -30776,7 +30973,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 "" @@ -30799,7 +30996,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 "" @@ -30815,7 +31012,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 "" @@ -30839,7 +31038,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 "d" @@ -30897,7 +31096,7 @@ msgstr "elimina" msgid "descending" msgstr "decrescente" -#: 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 "" @@ -30907,7 +31106,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 "" @@ -30949,12 +31148,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 "" @@ -30983,7 +31186,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 @@ -31010,12 +31213,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 "h" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 msgid "hub" msgstr "" @@ -31030,6 +31233,20 @@ msgstr "icona" msgid "import" msgstr "importa" +#: 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 "" @@ -31069,16 +31286,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 "" - #: frappe/model/rename_doc.py:215 msgid "merged {0} into {1}" msgstr "" @@ -31097,15 +31309,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 "nuovo" -#: 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 "" @@ -31117,7 +31329,7 @@ msgstr "" #. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "nonce" -msgstr "valore unico" +msgstr "" #. Label of the notified (Check) field in DocType 'Reminder' #: frappe/automation/doctype/reminder/reminder.json @@ -31140,7 +31352,7 @@ msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_cancel" -msgstr "on_cancel" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -31150,7 +31362,7 @@ msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_submit" -msgstr "on_submit" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -31167,7 +31379,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 "" @@ -31240,7 +31452,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 "" @@ -31249,7 +31461,7 @@ msgstr "" #. Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "s256" -msgstr "s256" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json @@ -31324,11 +31536,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 "" @@ -31342,7 +31554,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:41 msgid "to close" -msgstr "" +msgstr "per chiudere" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:41 msgid "to navigate" @@ -31426,11 +31638,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 "" @@ -31466,11 +31680,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 "" @@ -31487,8 +31701,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 "" @@ -31501,13 +31715,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" @@ -31541,11 +31755,11 @@ msgstr "" msgid "{0} Map" msgstr "" -#: frappe/public/js/frappe/form/quick_entry.js:122 +#: frappe/public/js/frappe/form/quick_entry.js:135 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 "" @@ -31553,7 +31767,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:984 msgid "{0} Reports" msgstr "" @@ -31566,11 +31780,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 "" @@ -31632,7 +31846,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 "" @@ -31661,16 +31875,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 "Creato da {0}" @@ -31687,11 +31904,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 "" @@ -31716,7 +31941,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 "" @@ -31737,7 +31962,11 @@ msgstr "{0} se non vieni reindirizzato entro {1} secondi" 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 "" @@ -31745,7 +31974,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 "" @@ -31753,6 +31990,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 "" @@ -31762,22 +32008,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 "" @@ -31790,10 +32050,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 "" @@ -31810,12 +32074,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 "" @@ -31823,23 +32087,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 "" @@ -31855,6 +32119,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 "" @@ -31863,10 +32132,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 "" @@ -31875,36 +32146,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 "Ultima modifica di {0}" @@ -31932,35 +32217,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 "" @@ -31977,11 +32262,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} di {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 "" @@ -32010,7 +32295,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 "" @@ -32035,7 +32320,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} riga #{1}:" @@ -32049,7 +32334,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 "" @@ -32057,7 +32342,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 "" @@ -32125,7 +32410,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 "" @@ -32137,7 +32422,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 "" @@ -32145,11 +32430,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 "" @@ -32161,11 +32446,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 "" @@ -32173,7 +32458,7 @@ 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 "" @@ -32181,79 +32466,51 @@ msgstr "" 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 "" @@ -32261,15 +32518,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 "" @@ -32282,15 +32583,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:1330 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:222 msgid "{1} saved" msgstr "" @@ -32310,11 +32611,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/my.po b/frappe/locale/my.po index 0ffdec53f2..9db22477ca 100644 --- a/frappe/locale/my.po +++ b/frappe/locale/my.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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Burmese\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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1463,11 @@ 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 "" @@ -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:997 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 "" @@ -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:132 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:135 +#: frappe/public/js/frappe/form/print_utils.js:148 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 "" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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 "" @@ -5786,6 +5845,14 @@ msgstr "" 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 "" @@ -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 "" @@ -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:964 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 "" @@ -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,11 +7984,11 @@ 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 "" @@ -7915,15 +7996,15 @@ msgstr "" 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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 "" @@ -9249,7 +9342,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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 "" @@ -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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "" @@ -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:1273 #: 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 "" @@ -15071,9 +15230,9 @@ msgstr "" #: 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/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:1136 msgid "Loading" msgstr "" @@ -15090,7 +15249,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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 "" +#. 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:947 #: 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 "" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "" @@ -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 @@ -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 "" @@ -17591,7 +17774,7 @@ 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/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,9 +18698,9 @@ 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:1884 msgid "PDF" msgstr "" @@ -18519,7 +18709,9 @@ 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 "" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20385,11 @@ 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 "" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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 "" @@ -23330,11 +23533,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 +23563,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 +23603,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 +23633,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 +23690,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 +23753,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 +23792,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 +23886,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 +23896,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 +23923,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 +23959,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 +24007,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 +24033,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:2199 msgid "Set Level" msgstr "" @@ -23866,8 +24076,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 +24097,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 +24206,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 +24230,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 +24242,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "" @@ -24066,13 +24276,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 +24291,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 +24351,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 +24400,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 +24452,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 +24572,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 +24714,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 +24837,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 +25012,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 +25051,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 +25106,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 +25145,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 +25153,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 +25221,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 +25394,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 +25432,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 +25546,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 +25560,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 +25581,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:268 #: 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 +25618,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 +25642,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 +25672,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 +25707,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 +25754,7 @@ msgstr "" msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:363 +#: frappe/model/workflow.py:384 msgid "Successful Transactions" msgstr "" @@ -25572,7 +25779,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 +25804,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 +25845,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 +25858,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 +25927,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 +25937,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 +26064,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 @@ -25949,6 +26155,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 +26176,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 +26217,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 +26226,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 +26244,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 +26252,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 +26276,17 @@ msgid "Tag Link" msgstr "" #: frappe/model/meta.py:59 -#: frappe/public/js/frappe/form/templates/form_sidebar.html:102 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:123 #: 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/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 +26370,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 +26466,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 +26518,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 +26674,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 +26686,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 +26763,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 +26771,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -26519,7 +26780,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 +26792,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 +26804,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26559,7 +26820,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 +26828,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 +26901,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 +26929,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 +26945,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 +26966,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 +26991,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 +27014,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26795,15 +27056,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:1069 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26811,7 +27072,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:881 msgid "This report was generated {0}." msgstr "" @@ -26835,7 +27096,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 +27140,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 +27171,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 +27179,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 +27262,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 +27293,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 +27368,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 +27391,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 +27477,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:882 msgid "To get the updated report, click on {0}." msgstr "" @@ -27272,31 +27530,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 +27573,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 +27581,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 +27649,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "" @@ -27422,7 +27667,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 +27767,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 +27803,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2274 +#: frappe/public/js/frappe/views/reports/query_report.js:2341 msgid "Translate Data" msgstr "" @@ -27569,7 +27814,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 +27850,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 +27899,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 +27946,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 +27960,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 +27969,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 @@ -27897,7 +28144,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 +28160,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 +28181,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:945 msgid "Unfollow" msgstr "" @@ -28021,9 +28268,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 +28304,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 +28328,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 +28336,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 +28413,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,7 +28422,7 @@ msgstr "" #: 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 +28434,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 +28463,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 +28475,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 +28528,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 +28600,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 +28634,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 +28662,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 +28802,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 +28818,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:2027 +#: 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 +28903,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 +28937,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 +28966,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 +28995,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 +29076,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 +29105,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 +29132,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 +29156,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 +29181,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 +29204,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 +29213,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 +29225,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 +29239,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 +29275,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 +29287,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 +29324,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 +29333,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 +29353,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 +29389,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 +29437,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 +29446,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 +29530,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 +29627,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 +29682,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 +29747,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 +29839,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 +29869,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 +29886,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 +30007,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 +30028,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 +30040,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 +30075,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 "" @@ -29868,11 +30124,8 @@ 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 "" @@ -29887,8 +30140,10 @@ msgstr "" 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 "" @@ -29904,7 +30159,7 @@ msgstr "" 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 +30188,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 +30211,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 +30226,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:1272 msgid "Y Field" msgstr "" @@ -30018,10 +30274,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 +30290,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30329,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 +30337,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 +30345,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 +30372,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 +30380,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 +30404,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 +30412,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 +30425,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 +30449,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 +30503,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 +30533,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 +30563,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 +30571,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 +30583,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 +30631,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 +30651,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 +30660,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 +30675,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 +30688,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 "" @@ -30478,7 +30740,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 +30787,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 +30864,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 +30906,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 +30928,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 +30947,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 +30970,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 +30986,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 +31012,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 +31070,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 +31080,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 +31122,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 +31187,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 +31207,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 +31260,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 +31283,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 +31353,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 +31426,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 +31510,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 +31612,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 +31654,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 +31675,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 +31689,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 +31729,11 @@ msgstr "" msgid "{0} Map" msgstr "" -#: frappe/public/js/frappe/form/quick_entry.js:122 +#: frappe/public/js/frappe/form/quick_entry.js:135 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 +31741,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:984 msgid "{0} Reports" msgstr "" @@ -31475,11 +31754,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 +31820,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 +31849,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 +31878,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 +31915,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 +31936,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 +31948,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 +31964,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 +31982,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 +32024,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 +32048,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 +32061,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 +32093,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 +32106,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 +32120,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 +32191,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 +32236,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 +32269,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 +32294,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 +32308,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 +32316,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 +32384,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 +32396,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 +32404,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 +32420,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,7 +32432,7 @@ 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 "" @@ -32090,79 +32440,51 @@ msgstr "" 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 +32492,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 +32557,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:1330 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:222 msgid "{1} saved" msgstr "" @@ -32219,11 +32585,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/nb.po b/frappe/locale/nb.po index 3bb32f11ab..c4c9995ccd 100644 --- a/frappe/locale/nb.po +++ b/frappe/locale/nb.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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -40,7 +40,7 @@ msgstr "\"Forelder\" angir den overordnede tabellen som denne raden skal legges msgid "\"Team Members\" or \"Management\"" msgstr "\"Lagmedlemmer\" 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 "\"amended_from\"-feltet må være til stede for å gjøre en endring." @@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. og bidragsytere" 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 "«I globalt søk» er ikke tillatt for feltet {0} av typen {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 globalt søk» er ikke tillatt for typen {0} i rad {1}" @@ -90,19 +90,19 @@ msgstr "'I listevisning' ikke tillatt for typen {0} i rad {1}" msgid "'Recipients' not specified" msgstr "'Mottakere' er ikke angitt" -#: frappe/utils/__init__.py:268 +#: frappe/utils/__init__.py:259 msgid "'{0}' is not a valid IBAN" msgstr "'{0}' er ikke et gyldig IBAN" -#: frappe/utils/__init__.py:258 +#: frappe/utils/__init__.py:249 msgid "'{0}' is not a valid URL" msgstr "'{0}' er ikke en 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}' er ikke tillatt for typen {1} i 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 "(Obligatorisk)" @@ -140,7 +140,7 @@ msgstr "" msgid "0 is highest" msgstr "0 er høyeste" -#: 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 og 0 = Usant" @@ -159,7 +159,7 @@ msgstr "1 dag" msgid "1 Google Calendar Event synced." msgstr "1 Google Kalender-hendelse synkronisert." -#: frappe/public/js/frappe/views/reports/query_report.js:966 +#: frappe/public/js/frappe/views/reports/query_report.js:983 msgid "1 Report" msgstr "1 Rapport" @@ -190,7 +190,7 @@ msgstr "1 måned siden" 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 oppføring vil bli eksportert" @@ -772,7 +772,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 "Navnet på en dokumenttype (DocType) skal starte med en bokstav og kan bare bestå av bokstaver, tall, mellomrom, understrek og bindestreker" @@ -786,7 +786,7 @@ msgstr "En Frappe Framework-instans kan fungere som en OAuth-klient, ressurs ell msgid "A download link with your data will be sent to the email address associated with your account." msgstr "En nedlastingslenke med dataene dine vil bli sendt til e-postadressen som er knyttet til kontoen din." -#: 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} finnes allerede i {1}" @@ -1107,7 +1107,7 @@ msgstr "Handling / Rute" msgid "Action Complete" msgstr "Handlingen er fullført" -#: frappe/model/document.py:1941 +#: frappe/model/document.py:1940 msgid "Action Failed" msgstr "Handlingen mislyktes" @@ -1156,13 +1156,13 @@ msgstr "Handlingen {0} mislyktes på {1} {2}. Se den på {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:870 msgid "Actions" msgstr "Handlinger" @@ -1219,20 +1219,20 @@ msgstr "Aktivitet" msgid "Activity Log" msgstr "Aktivitetslogg" -#: 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 "Legg til" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:456 msgid "Add / Remove Columns" msgstr "Legg til / Fjern kolonner" @@ -1240,11 +1240,11 @@ msgstr "Legg til / Fjern kolonner" msgid "Add / Update" msgstr "Legg til / Oppdater" -#: frappe/core/page/permission_manager/permission_manager.js:492 +#: frappe/core/page/permission_manager/permission_manager.js:493 msgid "Add A New Rule" msgstr "Legg til en 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 "Legg til vedlegg" @@ -1264,11 +1264,15 @@ msgstr "Legg til kant nederst" msgid "Add Border at Top" msgstr "Legg til 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 "Legg til diagram i oversiktspanel" -#: 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 "Legg til diagram i oversiktspanel" @@ -1277,8 +1281,8 @@ msgid "Add Child" msgstr "Legg til 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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 @@ -1322,11 +1326,7 @@ msgstr "Legg til gruppe" msgid "Add Indexes" msgstr "Legg til indekser" -#: frappe/public/js/frappe/form/grid.js:66 -msgid "Add Multiple" -msgstr "Legg til 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 "Legg til ny regel for tillatelser" @@ -1339,17 +1339,13 @@ msgstr "Legg til deltakere" msgid "Add Query Parameters" msgstr "Legg til spørreparametere" -#: frappe/core/doctype/user/user.py:857 +#: frappe/core/doctype/user/user.py:860 msgid "Add Roles" msgstr "Legg til roller" -#: frappe/public/js/frappe/form/grid.js:66 -msgid "Add Row" -msgstr "Legg til 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 "Legg til signatur" @@ -1368,16 +1364,16 @@ msgstr "Legg til mellomrom øverst" msgid "Add Subscribers" msgstr "Legg til abonnenter" -#: frappe/public/js/frappe/list/bulk_operations.js:425 +#: frappe/public/js/frappe/list/bulk_operations.js:439 msgid "Add Tags" msgstr "Legg til stikkord" -#: 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 "Legg til stikkord" -#: frappe/public/js/frappe/views/communication.js:424 +#: frappe/public/js/frappe/views/communication.js:483 msgid "Add Template" msgstr "Legg til mal" @@ -1427,19 +1423,19 @@ msgstr "Legg til en kommentar" msgid "Add a new section" msgstr "Legg til en ny seksjon" -#: 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 "Legg til en rad over gjeldende 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 "Legg til en 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 "Legg til en 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 "Legg til en rad under gjeldende rad" @@ -1457,6 +1453,10 @@ msgstr "Legg til kolonne" msgid "Add field" msgstr "Legg til 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" @@ -1470,6 +1470,10 @@ msgstr "" msgid "Add page break" msgstr "Legg til 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 "Legg til skript for undertabell" @@ -1488,7 +1492,7 @@ msgid "Add tab" msgstr "Legg til 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 "Legg til i oversiktspanel" @@ -1528,8 +1532,8 @@ msgstr "La til HTML i <head> -delen av nettsiden, primært brukt til netts msgid "Added default log doctypes: {}" msgstr "Lagt til standard dokumenttyper (DocType) for logg: {}" -#: 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 "Lagt til {0} ({1})" @@ -1619,7 +1623,7 @@ msgstr "Legger til et egendefinert klientskript til en dokumenttype (DocType)" msgid "Adds a custom field to a DocType" msgstr "Legger til et egendefinert felt i en dokumenttype (DocType)" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 msgid "Administration" msgstr "Administrasjon" @@ -1646,11 +1650,11 @@ msgstr "Administrasjon" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1273 +#: frappe/core/doctype/user/user.py:1276 msgid "Administrator Logged In" msgstr "Administratoren er logget inn" -#: 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 fikk tilgang til {0} på {1} via IP-adressen {2}." @@ -1671,8 +1675,8 @@ msgstr "Avansert" msgid "Advanced Control" msgstr "Avansert 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 "Avansert søk" @@ -1753,7 +1757,7 @@ msgstr "Feltet Aggregert funksjon er påkrevd for å opprette et diagram i overs msgid "Alert" msgstr "Alarm" -#: frappe/database/query.py:2147 +#: frappe/database/query.py:2226 msgid "Alias must be a string" msgstr "Aliaset må være en streng" @@ -1777,6 +1781,15 @@ msgstr "Høyrejuster" msgid "Align Value" msgstr "Juster verdi" +#. 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' @@ -1809,7 +1822,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" @@ -1821,11 +1834,11 @@ msgstr "Alle bilder som er knyttet til nettsidens lysbildefremvisning, skal vær msgid "All Records" msgstr "Alle oppføringer" -#: frappe/public/js/frappe/form/form.js:2240 +#: frappe/public/js/frappe/form/form.js:2271 msgid "All Submissions" msgstr "Alle registreringer" -#: 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 tilpasninger vil bli fjernet. Vennligst bekreft." @@ -2137,7 +2150,7 @@ msgstr "Tillatte roller" msgid "Allowed embedding domains" msgstr "Tillatte innebyggingsdomener" -#: frappe/public/js/frappe/form/form.js:1268 +#: frappe/public/js/frappe/form/form.js:1297 msgid "Allowing DocType, DocType. Be careful!" msgstr "Tillater flere dokumenttyper (DocType) kommaseparert. Vær forsiktig!" @@ -2171,13 +2184,61 @@ msgstr "Lar klienter se dette som en autorisasjonsserver når de spør etter slu msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." msgstr "Tillater at aktivert basis-URL for sosial påloggingsnøkkel vises som autorisasjonsserver." +#: 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 "Gjør det mulig å hoppe over autorisasjon hvis en bruker har aktive 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 "" + +#: 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 "Allerede registrert" @@ -2272,7 +2333,7 @@ msgstr "Endring" msgid "Amendment Naming Override" msgstr "Overstyring av navngivning av korrigering" -#: frappe/model/document.py:586 +#: frappe/model/document.py:585 msgid "Amendment Not Allowed" msgstr "Korrigering ikke tillatt" @@ -2285,7 +2346,7 @@ msgstr "Regler for navngivning av korrigeringer oppdatert." msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." msgstr "En e-post for å bekrefte forespørselen din har blitt sendt til e-postadressen din. Vennligst bekreft forespørselen din for å fullføre prosessen." -#: 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 "Det oppstod en feil under innstilling av øktstandarder" @@ -2336,7 +2397,7 @@ msgstr "Anonymiseringsmatrise" msgid "Anonymous responses" msgstr "Anonyme 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 "En annen transaksjon blokkerer denne. Prøv igjen om noen sekunder." @@ -2349,7 +2410,7 @@ msgstr "En annen {0} med navnet {1} finnes. Velg et annet navn." 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 "Alle strengbaserte skriverspråk kan brukes. Å skrive rå kommandoer krever kunnskap om skriverens eget språk, levert av skriverprodusenten. Se utviklerhåndboken fra skriverprodusenten for informasjon om hvordan du skriver deres eget språk. Disse kommandoene gjengis på serversiden ved hjelp 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 "Bortsett fra systemansvarlig kan roller med rettigheten Angi brukertillatelser angi tillatelser for andre brukere for den dokumenttypen (DocType)." @@ -2399,11 +2460,11 @@ msgstr "Appnavn" msgid "App Name (Client Name)" msgstr "Appnavn (klientnavn)" -#: frappe/modules/utils.py:300 +#: frappe/modules/utils.py:343 msgid "App not found for module: {0}" msgstr "Appen ble ikke funnet for modulen: {0}" -#: frappe/__init__.py:1112 +#: frappe/__init__.py:1110 msgid "App {0} is not installed" msgstr "Appen {0} er ikke installert" @@ -2477,7 +2538,7 @@ msgstr "" msgid "Apply" msgstr "Bruk" -#: 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 "Bruk tildelingsregel" @@ -2486,6 +2547,10 @@ msgstr "Bruk tildelingsregel" msgid "Apply Filters" msgstr "Bruk 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 "Bruk denne regelen hvis brukeren er eieren" msgid "Apply to all Documents Types" msgstr "Bruk på alle dokumenttyper (DocType)" -#: frappe/model/workflow.py:322 +#: frappe/model/workflow.py:343 msgid "Applying: {0}" msgstr "Bruker: {0}" @@ -2533,18 +2598,11 @@ msgstr "Bruker: {0}" msgid "Approval Required" msgstr "Godkjenning kreves" -#. 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 "Apper" -#. 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" @@ -2567,16 +2625,16 @@ msgstr "Arkiverte kolonner" msgid "Are you sure you want to cancel the invitation?" msgstr "Er du sikker på at du vil avbryte invitasjonen?" -#: 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 "Er du sikker på at du vil slette de tildelte oppgavene?" -#: frappe/public/js/frappe/form/grid.js:296 -msgid "Are you sure you want to delete all rows?" -msgstr "Er du sikker på at du vil slette alle radene?" +#: 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 "Er du sikker på at du vil slette vedlegget?" @@ -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 "Er du sikker på at du vil slette fanen? Alle seksjonene og feltene i fanen vil bli flyttet til den forrige fanen." -#: 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 "Er du sikker på at du vil slette denne oppføringen?" -#: 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 "Er du sikker på at du vil forkaste endringene?" -#: frappe/public/js/frappe/views/reports/query_report.js:980 +#: frappe/public/js/frappe/views/reports/query_report.js:997 msgid "Are you sure you want to generate a new report?" msgstr "Er du sikker på at du vil generere en 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 "Er du sikker på at du vil slå sammen {0} med {1}?" @@ -2627,7 +2685,7 @@ msgstr "Er du sikker på at du vil koble denne kommunikasjonen til {0}på nytt?" msgid "Are you sure you want to remove all failed jobs?" msgstr "Er du sikker på at du vil fjerne alle mislykkede jobber?" -#: 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 "Er du sikker på at du vil fjerne filteret {0} ?" @@ -2676,7 +2734,7 @@ msgstr "I henhold til forespørselen din er kontoen din og dataene på {0} knytt msgid "Ask" msgstr "Spør" -#: frappe/public/js/frappe/form/templates/form_sidebar.html:68 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:89 msgid "Assign" msgstr "Tildel" @@ -2689,7 +2747,7 @@ msgstr "Tilordne betingelse" msgid "Assign To" msgstr "Tilordne til" -#: 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 "Tilordne til" @@ -2828,7 +2886,7 @@ msgstr "Tildelinger" 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 én kolonne må vises i rutenettet." @@ -2853,7 +2911,7 @@ msgstr "Minst ett felt av overordnet dokumenttype (DocType) er påkrevd" msgid "Attach" msgstr "Legg ved" -#: frappe/public/js/frappe/views/communication.js:146 +#: frappe/public/js/frappe/views/communication.js:173 msgid "Attach Document Print" msgstr "Legg ved dokumentutskrift" @@ -2951,19 +3009,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 "Vedlegg" -#: frappe/public/js/frappe/form/print_utils.js:119 +#: frappe/public/js/frappe/form/print_utils.js:132 msgid "Attempting Connection to QZ Tray..." msgstr "Forsøker å koble til QZ-skuff..." -#: frappe/public/js/frappe/form/print_utils.js:135 +#: frappe/public/js/frappe/form/print_utils.js:148 msgid "Attempting to launch QZ Tray..." msgstr "Prøver å starte 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 "Attribusjon" @@ -3288,11 +3353,6 @@ msgstr "Fantastisk arbeid :-)" msgid "Awesome, now try making an entry yourself" msgstr "Fantastisk, prøv å lage en oppføring selv nå :-)" -#. 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" @@ -3398,17 +3458,12 @@ msgstr "Bakgrunnsfarge" msgid "Background Image" msgstr "Bakgrunnsbilde" -#. 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 "Bakgrunnsjobber" @@ -3521,8 +3576,8 @@ msgstr "Grunnleggende 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 "Basert på" @@ -3546,6 +3601,8 @@ msgstr "Grunnleggende" msgid "Basic Info" msgstr "Grunnleggende info" +#. 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 "Begynner 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 "Det er bedre å legge til noen flere bokstaver eller et annet ord" @@ -3743,18 +3800,11 @@ msgstr "Merkevare-HTML" msgid "Brand Image" msgstr "Merkevarebilde" -#. 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 "Merkevarelogo" -#. 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" @@ -3825,7 +3875,7 @@ msgstr "Massesletting" msgid "Bulk Edit" msgstr "Masseredigering" -#: frappe/public/js/frappe/form/grid.js:1211 +#: frappe/public/js/frappe/form/grid.js:1248 msgid "Bulk Edit {0}" msgstr "Masseredigering {0}" @@ -3846,7 +3896,7 @@ msgstr "Masseeksport av PDF-filer" msgid "Bulk Update" msgstr "Masseoppdatering" -#: frappe/model/workflow.py:310 +#: frappe/model/workflow.py:331 msgid "Bulk approval only support up to 500 documents." msgstr "Massegodkjenning støtter kun opptil 500 dokumenter." @@ -3858,7 +3908,7 @@ msgstr "Bulkoperasjon er lagt i kø i bakgrunnen." msgid "Bulk operations only support up to 500 documents." msgstr "Massehandlinger støtter kun opptil 500 dokumenter." -#: frappe/model/workflow.py:299 +#: frappe/model/workflow.py:320 msgid "Bulk {0} is enqueued in background." msgstr "Bulk {0} er satt i kø i bakgrunnen." @@ -4007,7 +4057,7 @@ msgstr "Hurtigbuffer" msgid "Cache Cleared" msgstr "Hurtigbufferen er tømt" -#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255 msgid "Calculate" msgstr "Beregn" @@ -4057,12 +4107,12 @@ msgid "Callback Title" msgstr "Tittel for tilbakeringing" #: 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 "Kampanje" msgid "Campaign Description (Optional)" msgstr "Kampanjebeskrivelse (valgfritt)" -#: 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 ikke endre navn fordi kolonne {0} allerede finnes i dokumenttype (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 bare endre til/fra autoincrement-navneregel når det ikke finnes data i dokumenttypen (DocType)" @@ -4110,7 +4160,7 @@ msgstr "Kan ikke endre navn på {0} til {1} fordi {0} ikke finnes." msgid "Cancel" msgstr "Avbryt" -#: 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 "Avbryt" @@ -4120,11 +4170,11 @@ msgctxt "Secondary button in warning dialog" msgid "Cancel" msgstr "Avbryt" -#: frappe/public/js/frappe/form/form.js:982 +#: frappe/public/js/frappe/form/form.js:1011 msgid "Cancel All" msgstr "Avbryt alt" -#: frappe/public/js/frappe/form/form.js:969 +#: frappe/public/js/frappe/form/form.js:998 msgid "Cancel All Documents" msgstr "Avbryt alle dokumenter" @@ -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 "Avbryt {0} dokumenter?" @@ -4169,7 +4219,7 @@ msgstr "Avbryter" msgid "Cancelling documents" msgstr "Avbryter dokumenter" -#: frappe/desk/doctype/bulk_update/bulk_update.py:91 +#: frappe/desk/doctype/bulk_update/bulk_update.py:92 msgid "Cancelling {0}" msgstr "Avbryter" @@ -4177,7 +4227,7 @@ msgstr "Avbryter" msgid "Cannot Download Report due to insufficient permissions" msgstr "Kan ikke laste ned rapporten på grunn av manglende tillatelser" -#: frappe/client.py:455 +#: frappe/client.py:504 msgid "Cannot Fetch Values" msgstr "Kan ikke hente verdier" @@ -4185,7 +4235,7 @@ msgstr "Kan ikke hente verdier" msgid "Cannot Remove" msgstr "Kan ikke fjerne" -#: frappe/model/base_document.py:1266 +#: frappe/model/base_document.py:1283 msgid "Cannot Update After Submit" msgstr "Kan ikke oppdatere etter registrering" @@ -4205,11 +4255,11 @@ msgstr "Kan ikke avbryte før registrering. Se Overgang {0}" msgid "Cannot cancel {0}." msgstr "Kan ikke avbryte {0}." -#: frappe/model/document.py:1062 +#: frappe/model/document.py:1061 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Kan ikke endre docstatus fra 0 (Utkast) til 2 (Avbrutt)" -#: frappe/model/document.py:1076 +#: frappe/model/document.py:1075 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Kan ikke endre docstatus fra 1 (Registrert) til 0 (Utkast)" @@ -4221,7 +4271,7 @@ msgstr "Kan ikke endre tilstand for avbrutt dokument ({0} Status)" msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "Kan ikke endre tilstand for avbrutt dokument. Overgangsrad {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 ikke endre til/fra automatisk økning av navn i \"Tilpass skjema\"" @@ -4229,10 +4279,14 @@ msgstr "Kan ikke endre til/fra automatisk økning av navn i \"Tilpass skjema\"" msgid "Cannot create a {0} against a child document: {1}" msgstr "Kan ikke opprette en {0} mot et underdokument: {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 ikke opprette privat arbeidsområde for andre brukere" +#: 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 "Kan ikke slette Hjem- og Vedlegg-mappene" @@ -4241,15 +4295,15 @@ msgstr "Kan ikke slette Hjem- og Vedlegg-mappene" msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Kan ikke slette eller avbryte fordi {0} {1} er koblet til {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 ikke slette standardhandlingen. Du kan skjule den hvis du vil." -#: 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 ikke slette standard dokumentstatus." -#: 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 ikke slette standardfeltet {0}. Du kan skjule det i stedet." @@ -4260,11 +4314,11 @@ msgstr "Kan ikke slette standardfeltet {0}. Du kan skjule det i msgid "Cannot delete standard field. You can hide it if you want" msgstr "Kan ikke slette standardfeltet. Du kan skjule det hvis du vil." -#: 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 ikke slette standardlenken. Du kan skjule den hvis du vil." -#: 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 ikke slette det systemgenererte feltet {0}. Du kan skjule det i stedet." @@ -4292,7 +4346,7 @@ msgstr "Kan ikke redigere standarddiagrammer" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Kan ikke redigere en standardrapport. Vennligst dupliser og opprett en ny rapport." -#: frappe/model/document.py:1082 +#: frappe/model/document.py:1081 msgid "Cannot edit cancelled document" msgstr "Kan ikke redigere avbrutt dokument" @@ -4305,7 +4359,7 @@ msgstr "Kan ikke redigere filtre for standarddiagrammer" msgid "Cannot edit filters for standard number cards" msgstr "Kan ikke redigere filtre for standard oversikt over nøkkeltall" -#: frappe/client.py:170 +#: frappe/client.py:176 msgid "Cannot edit standard fields" msgstr "Kan ikke redigere standardfelt" @@ -4321,15 +4375,15 @@ msgstr "Kan ikke finne filen {} på disken" msgid "Cannot get file contents of a Folder" msgstr "Kan ikke hente filinnholdet i en mappe" -#: 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 ikke ha flere skrivere tilordnet til ett og samme utskriftsformat." -#: 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 ikke importere tabell med mer enn 5000 rader." -#: frappe/model/document.py:1150 +#: frappe/model/document.py:1149 msgid "Cannot link cancelled document: {0}" msgstr "Kan ikke lenke til avbrutt dokument: {0}" @@ -4341,7 +4395,7 @@ msgstr "Kan ikke mappe fordi følgende betingelse mislykkes:" msgid "Cannot match column {0} with any field" msgstr "Kan ikke matche kolonnen {0} med noe felt" -#: frappe/public/js/frappe/form/grid_row.js:176 +#: frappe/public/js/frappe/form/grid_row.js:178 msgid "Cannot move row" msgstr "Kan ikke flytte rad" @@ -4366,7 +4420,7 @@ msgid "Cannot submit {0}." msgstr "Kan ikke registrere {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 ikke oppdatere {0}" @@ -4386,7 +4440,7 @@ msgstr "Kan ikke {0} {1}." msgid "Capitalization doesn't help very much." msgstr "Store bokstaver hjelper ikke noe særlig." -#: frappe/public/js/frappe/ui/capture.js:294 +#: frappe/public/js/frappe/ui/capture.js:295 msgid "Capture" msgstr "Ta bilde" @@ -4400,7 +4454,7 @@ msgstr "Kort" msgid "Card Break" msgstr "Kortskille" -#: frappe/public/js/frappe/views/reports/query_report.js:262 +#: frappe/public/js/frappe/views/reports/query_report.js:263 msgid "Card Label" msgstr "Kortetikett" @@ -4429,17 +4483,19 @@ msgstr "Kategoribeskrivelse" msgid "Category Name" msgstr "Kategorinavn" +#. 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 "Senter" -#: 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 "Enkelte dokumenter, som en faktura, kan ikke endres når de er endelige. Den endelige statusen for slike dokumenter kalles registrert. Du kan begrense hvilke roller som kan registrere." - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4528,7 +4584,7 @@ msgstr "Konfigurasjon av diagram" #. 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-navn" @@ -4593,6 +4649,12 @@ msgstr "Marker kolonnene du vil velge, dra for å angi rekkefølge." msgid "Check the Error Log for more information: {0}" msgstr "Sjekk feilloggen for mer informasjon: {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 "Merk av for dette hvis du ikke vil at brukerne skal registrere seg for en konto på nettstedet ditt. Brukerne får ikke skrivebordstilgang med mindre du eksplisitt gir dem det." @@ -4644,7 +4706,7 @@ msgstr "Underordnet dokumenttype (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 "" @@ -4654,7 +4716,7 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Underordnede tabeller vises som et rutenett i andre dokumenttyper (DocType)" -#: frappe/database/query.py:1062 +#: frappe/database/query.py:1105 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "Underordnede spørringsfelt for '{0}' må være en liste eller en tupel." @@ -4662,7 +4724,7 @@ msgstr "Underordnede spørringsfelt for '{0}' må være en liste eller en tupel. msgid "Choose Existing Card or create New Card" msgstr "Velg eksisterende kort eller opprett nytt 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 "Velg en blokk eller fortsett å skrive" @@ -4682,10 +4744,6 @@ msgstr "Velg et ikon" msgid "Choose authentication method to be used by all users" msgstr "Velg autentiseringsmetode som skal brukes av alle brukere" -#: 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 @@ -4702,11 +4760,11 @@ msgstr "By/sted" msgid "Clear" msgstr "Tøm" -#: frappe/public/js/frappe/views/communication.js:429 +#: frappe/public/js/frappe/views/communication.js:488 msgid "Clear & Add Template" msgstr "Fjern og legg til mal" -#: frappe/public/js/frappe/views/communication.js:105 +#: frappe/public/js/frappe/views/communication.js:112 msgid "Clear & Add template" msgstr "Fjern og legg til mal" @@ -4714,7 +4772,7 @@ msgstr "Fjern og legg til mal" msgid "Clear All" msgstr "Fjern alt" -#: 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 "Slett oppgave" @@ -4740,7 +4798,7 @@ msgstr "Tøm logger etter (dager)" msgid "Clear User Permissions" msgstr "Slett brukertillatelser" -#: 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 "Fjern e-postmeldingen og legg til malen" @@ -4808,7 +4866,7 @@ msgstr "Klikk for å angi dynamiske filtre" msgid "Click to Set Filters" msgstr "Klikk for å angi filtre" -#: 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 "Klikk for å sortere etter {0}" @@ -4916,7 +4974,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 "Lukk" @@ -4926,7 +4984,7 @@ msgstr "Lukk" msgid "Close Condition" msgstr "Lukk betingelse" -#: frappe/public/js/form_builder/components/FieldProperties.vue:79 +#: frappe/public/js/form_builder/components/FieldProperties.vue:96 msgid "Close properties" msgstr "Lukk egenskaper" @@ -4982,12 +5040,12 @@ msgstr "Metode for Code Challenge" msgid "Collapse" msgstr "Fold sammen alle" -#: 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 "Fold sammen kodefeltet" -#: frappe/public/js/frappe/views/reports/query_report.js:2143 +#: frappe/public/js/frappe/views/reports/query_report.js:2199 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Fold sammen alle" @@ -5044,7 +5102,7 @@ msgstr "Sammenfoldbarhet avhenger av (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:1280 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5055,7 +5113,7 @@ msgstr "Farge" #. 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" @@ -5100,11 +5158,11 @@ msgstr "Kolonnenavn" msgid "Column Name cannot be empty" msgstr "Kolonnenavnet kan ikke være tomt" -#: frappe/public/js/frappe/form/grid_row.js:454 +#: frappe/public/js/frappe/form/grid_row.js:456 msgid "Column Width" msgstr "Kolonnebredde" -#: 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 "Kolonnebredden kan ikke være null." @@ -5147,7 +5205,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 @@ -5294,12 +5352,12 @@ msgstr "Fullført" msgid "Complete By" msgstr "Fullført av" -#: 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 "Fullfø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 "Fullfør oppsett" @@ -5314,7 +5372,7 @@ msgstr "Fullfør oppsett" #: 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 "Fullført" @@ -5405,7 +5463,7 @@ msgstr "Konfigurasjon" msgid "Configure Chart" msgstr "Konfigurer diagram" -#: frappe/public/js/frappe/form/grid_row.js:406 +#: frappe/public/js/frappe/form/grid_row.js:408 msgid "Configure Columns" msgstr "Konfigurer kolonner" @@ -5496,8 +5554,8 @@ msgstr "Tilkoblet app" msgid "Connected User" msgstr "Tilkoblet bruker" -#: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 msgid "Connected to QZ Tray!" msgstr "Koblet til QZ Tray!" @@ -5615,7 +5673,7 @@ msgstr "Inneholder {0} sikkerhetsoppdateringer" #. 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 @@ -5684,11 +5742,11 @@ msgstr "Bidragsstatus" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "Kontrollerer om nye brukere kan registrere seg med denne sosiale påloggingsnøkkelen. Hvis den ikke er angitt, respekteres nettstedsinnstillingene." -#: frappe/public/js/frappe/utils/utils.js:1077 +#: frappe/public/js/frappe/utils/utils.js:1085 msgid "Copied to clipboard." msgstr "Kopier til utklippstavlen" -#: 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 "" @@ -5700,12 +5758,12 @@ msgstr "Kopier lenke" msgid "Copy embed code" msgstr "Kopier innbyggingskode" -#: frappe/public/js/frappe/request.js:621 +#: frappe/public/js/frappe/request.js:619 msgid "Copy error to clipboard" msgstr "Kopier feil til utklippstavlen" -#: 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 "Kopier til utklippstavlen" @@ -5726,7 +5784,7 @@ msgstr "Kjerne-dokumenttyper (DocType) kan ikke tilpasses." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "Kjernemoduler {0} kan ikke søkes opp i Globalt søk." -#: frappe/printing/page/print/print.js:679 +#: frappe/printing/page/print/print.js:687 msgid "Correct version :" msgstr "Riktig versjon:" @@ -5734,7 +5792,7 @@ msgstr "Riktig versjon:" msgid "Could not connect to outgoing email server" msgstr "Kunne ikke koble til serveren for utgående e-post" -#: frappe/model/document.py:1146 +#: frappe/model/document.py:1145 msgid "Could not find {0}" msgstr "Kunne ikke finne {0}" @@ -5742,11 +5800,11 @@ msgstr "Kunne ikke finne {0}" msgid "Could not map column {0} to field {1}" msgstr "Kunne ikke tilordne kolonne {0} til felt {1}" -#: frappe/database/query.py:960 +#: frappe/database/query.py:1003 msgid "Could not parse field: {0}" msgstr "Kunne ikke analysere feltet: {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 "" @@ -5754,7 +5812,7 @@ msgstr "" msgid "Could not start up:" msgstr "Kunne ikke starte opp:" -#: 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 "Kunne ikke lagre. Sjekk dataene du har skrevet inn." @@ -5806,7 +5864,7 @@ msgstr "Teller" msgid "Country" msgstr "Land" -#: frappe/utils/__init__.py:132 +#: frappe/utils/__init__.py:123 msgid "Country Code Required" msgstr "Landskode er påkrevd" @@ -5833,15 +5891,16 @@ msgstr "Kredit" #: 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:1312 +#: frappe/public/js/frappe/views/workspace/workspace.js:531 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Opprett" @@ -5854,13 +5913,13 @@ msgstr "Opprett og fortsett" msgid "Create Address" msgstr "Opprett adresse" -#: 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 "Opprett 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:1239 msgid "Create Chart" msgstr "Opprett diagram" @@ -5894,7 +5953,7 @@ msgstr "Opprett logg" msgid "Create New" msgstr "Opprett 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 "Opprett ny" @@ -5907,7 +5966,7 @@ msgstr "Opprett ny dokumenttype (DocType)" msgid "Create New Kanban Board" msgstr "Opprett nytt Kanban-board" -#: frappe/public/js/frappe/list/list_filter.js:101 +#: frappe/public/js/frappe/list/list_filter.js:118 msgid "Create Saved Filter" msgstr "" @@ -5923,18 +5982,18 @@ msgstr "Opprett et nytt format" msgid "Create a Reminder" msgstr "Opprett en 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 "Opprett en 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 "Opprett en 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 "Opprett en ny {0}" @@ -5951,7 +6010,7 @@ msgstr "Opprett eller rediger utskriftsformat" msgid "Create or Edit Workflow" msgstr "Opprett eller rediger arbeidsflyt" -#: frappe/public/js/frappe/list/list_view.js:510 +#: frappe/public/js/frappe/list/list_view.js:513 msgid "Create your first {0}" msgstr "Opprett din første {0}" @@ -5977,6 +6036,14 @@ msgstr "Opprettet den" msgid "Created By" msgstr "Opprettet av" +#: 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 "Opprettet egendefinert felt {0} i {1}" @@ -6181,15 +6248,15 @@ msgstr "Egendefinerte dokumenter" msgid "Custom Field" msgstr "Egendefinert felt" -#: 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 "Egendefinert felt {0} er opprettet av administratoren og kan bare slettes gjennom administratorkontoen." -#: 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 "Tilpassede felt kan bare legges til i en standard dokumenttype (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 "Tilpassede felt kan ikke legges til i kjerne-dokumenttyper (DocType)." @@ -6215,7 +6282,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0}, msgstr "Egendefinert gruppesøk må inneholde brukerens plassholder {0}, f.eks. uid={0}, ou=brukere, dc=eksempel, 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 "Egendefinert HTML" @@ -6286,11 +6353,11 @@ msgstr "Egendefinert sidepanelmeny" msgid "Custom Translation" msgstr "Egendefinert oversettelse" -#: 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 "Egendefinert felt har endret navn til {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 "Tilpasset get_list-metode for {0} må returnere et QueryBuilder-objekt eller Ingen, fikk {1}" @@ -6313,26 +6380,26 @@ msgstr "Egendefinert?" msgid "Customization" msgstr "Egendefinering" -#: frappe/public/js/frappe/views/workspace/workspace.js:372 +#: frappe/public/js/frappe/views/workspace/workspace.js:420 msgid "Customizations Discarded" msgstr "Forkastet egendefineringer" -#: frappe/custom/doctype/customize_form/customize_form.js:465 +#: frappe/custom/doctype/customize_form/customize_form.js:475 msgid "Customizations Reset" msgstr "Nullstilling av egendefineringer" -#: frappe/modules/utils.py:99 +#: frappe/modules/utils.py:121 msgid "Customizations for {0} exported to:
{1}" msgstr "Egendefinering for {0} eksportert til:
{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 "Egendefiner" -#: 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 "Egendefiner" @@ -6429,7 +6496,7 @@ msgstr "Daglig" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "Daglig hendelsessammendrag sendes for kalenderhendelser der påminnelser er angitt." -#: frappe/desk/doctype/event/event.py:104 +#: frappe/desk/doctype/event/event.py:109 msgid "Daily Events should finish on the Same Day." msgstr "Daglige hendelser skal fullføres på samme dag." @@ -6486,8 +6553,8 @@ msgstr "Mørkt 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 "Oversiktspanel" @@ -6737,7 +6804,7 @@ msgstr "Dager før" msgid "Days Before or After" msgstr "Dager før eller etter" -#: frappe/public/js/frappe/request.js:252 +#: frappe/public/js/frappe/request.js:250 msgid "Deadlock Occurred" msgstr "Deadlock oppstod" @@ -6934,11 +7001,11 @@ msgstr "Standard arbeidsområde" msgid "Default display currency" msgstr "Standard visningsvaluta" -#: 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 for «Sjekk»-feltet {0} må være enten «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 "Standardverdien for {0} må være i listen over alternativer." @@ -6995,11 +7062,12 @@ msgstr "Forsinket" #: 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 @@ -7007,7 +7075,7 @@ msgstr "Forsinket" msgid "Delete" msgstr "Slett" -#: 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 "Slett" @@ -7021,10 +7089,6 @@ msgstr "Slett" msgid "Delete Account" msgstr "Slett konto" -#: frappe/public/js/frappe/form/grid.js:66 -msgid "Delete All" -msgstr "Slett alt" - #. Label of the delete_background_exported_reports_after (Int) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -7054,7 +7118,15 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Slett fane" -#: 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:964 msgid "Delete and Generate New" msgstr "Slett og generer ny" @@ -7082,6 +7154,10 @@ msgctxt "Button text" msgid "Delete entire tab with fields" msgstr "Slett hele fanen med felt" +#: 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" @@ -7096,16 +7172,20 @@ msgstr "Slett fane" msgid "Delete this record to allow sending to this email address" msgstr "Slett denne oppføringen for å tillate sending til denne e-postadressen" -#: 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 "Slette {0} element 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 "Slette {0} elementer permanent?" +#: 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' @@ -7136,7 +7216,7 @@ msgstr "Slettet navn" msgid "Deleted all documents successfully" msgstr "Sletting av alle dokumenter var vellykket" -#: frappe/public/js/frappe/web_form/web_form.js:211 +#: frappe/public/js/frappe/web_form/web_form.js:207 msgid "Deleted!" msgstr "Slettet!" @@ -7243,6 +7323,7 @@ msgstr "Underordnede til (inkludert)" #: 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 @@ -7325,16 +7406,21 @@ msgstr "Skrivebordstema" msgid "Desk User" msgstr "Desk-bruker" -#: 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 "Skrivebordsikon" +#. 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" @@ -7364,11 +7450,11 @@ msgstr "Detaljer" msgid "Detect CSV type" msgstr "Oppdag CSV-typen" -#: frappe/core/page/permission_manager/permission_manager.js:544 +#: frappe/core/page/permission_manager/permission_manager.js:545 msgid "Did not add" msgstr "La ikke til" -#: frappe/core/page/permission_manager/permission_manager.js:438 +#: frappe/core/page/permission_manager/permission_manager.js:439 msgid "Did not remove" msgstr "Fjernet ikke" @@ -7516,10 +7602,11 @@ msgstr "Deaktivert" msgid "Disabled Auto Reply" msgstr "Deaktivert automatisk svar" -#: 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 "Kast" @@ -7533,11 +7620,11 @@ msgctxt "Discard Email" msgid "Discard" msgstr "Kast" -#: frappe/public/js/frappe/form/form.js:851 +#: frappe/public/js/frappe/form/form.js:880 msgid "Discard {0}" msgstr "Kast {0}" -#: frappe/public/js/frappe/web_form/web_form.js:190 +#: frappe/public/js/frappe/web_form/web_form.js:186 msgid "Discard?" msgstr "Kaste?" @@ -7611,11 +7698,11 @@ msgstr "Ikke opprett ny bruker" msgid "Do not create new user if user with email does not exist in the system" msgstr "Ikke opprett ny bruker hvis bruker med e-postadresse ikke finnes i systemet." -#: 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 "Ikke rediger overskrifter som er forhåndsinnstilte i malen" -#: frappe/public/js/frappe/router.js:624 +#: frappe/public/js/frappe/router.js:629 msgid "Do not warn me again about {0}" msgstr "Ikke advar meg igjen om {0}" @@ -7623,7 +7710,7 @@ msgstr "Ikke advar meg igjen om {0}" msgid "Do you still want to proceed?" msgstr "Vil du fortsatt fortsette?" -#: 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 "Vil du avbryte alle lenkede dokumenter?" @@ -7681,7 +7768,6 @@ msgstr "\t\t\t\t\t\t\t\tDokumentstatusen for følgende tilstander er endret:
#. 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' @@ -7704,7 +7790,6 @@ msgstr "\t\t\t\t\t\t\t\tDokumentstatusen for følgende tilstander er endret:
#: 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 @@ -7717,7 +7802,7 @@ msgstr "\t\t\t\t\t\t\t\tDokumentstatusen for følgende tilstander er endret:
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 "Dokumenttype (DocType) {0} angitt for feltet {1} må ha minst ett lenkefelt" @@ -7785,10 +7870,6 @@ msgstr "En dokumenttype (DocType) er en tabell eller et skjema i applikasjonen." msgid "DocType must be Submittable for the selected Doc Event" msgstr "Dokumenttypen (DocType) må kunne sendes inn for den valgte (DocType-) hendelsen" -#: frappe/client.py:406 -msgid "DocType must be a string" -msgstr "Dokumenttype (DocType) må være en streng" - #: frappe/public/js/form_builder/store.js:154 msgid "DocType must have atleast one field" msgstr "Dokumenttype (DocType) må ha minst ett felt" @@ -7806,15 +7887,15 @@ msgstr "Dokumenttypen (DocType) denne arbeidsflyten gjelder for." msgid "DocType required" msgstr "Dokumenttype (DocType) er påkrevd" -#: frappe/modules/utils.py:178 +#: frappe/modules/utils.py:218 msgid "DocType {0} does not exist." msgstr "Dokumenttype (DocType) {0} finnes ikke." -#: frappe/modules/utils.py:245 +#: frappe/modules/utils.py:288 msgid "DocType {} not found" msgstr "Dokumenttype (DocType) {} ble ikke funnet" -#: 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 "Navn på dokumenttype (DocType) skal ikke begynne eller slutte med mellomrom" @@ -7828,7 +7909,7 @@ msgstr "Dokumenttyper (DocType) kan ikke endres, bruk {0} i stedet." 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 "Navnet på dokumenttypen (DocType) er begrenset til {0} tegn ({1})" @@ -7890,19 +7971,19 @@ msgstr "Dokumentlenking" msgid "Document Links" msgstr "Dokumentlenker" -#: 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 "Rad #{0} for dokumentkoblinger: Finner ikke feltet {1} i {2} dokumenttypen (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 "Rad #{0} for dokumentkoblinger: Ugyldig dokumenttype (DocType) eller feltnavn." -#: 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 "Rad #{0} for dokumentkoblinger: Overordnet dokumenttype (DocType) er påkrevd for interne lenker" -#: 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 "Rad #{0} for dokumentkoblinger: Tabellfeltnavn er påkrevd for interne koblinger" @@ -7921,9 +8002,9 @@ msgstr "Rad #{0} for dokumentkoblinger: Tabellfeltnavn er påkrevd for interne k msgid "Document Name" msgstr "Dokumentnavn" -#: frappe/client.py:409 -msgid "Document Name must be a string" -msgstr "Dokumentnavnet må være en streng" +#: 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 @@ -7940,7 +8021,7 @@ msgstr "Betingelse for dokumentnavningsregel" msgid "Document Naming Settings" msgstr "Innstillinger for dokumentnavning" -#: frappe/model/document.py:512 +#: frappe/model/document.py:511 msgid "Document Queued" msgstr "Dokumentet er i kø" @@ -8044,7 +8125,7 @@ msgstr "Dokumenttittel" #: 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 @@ -8064,11 +8145,11 @@ msgstr "Dokumenttype (DocType)" msgid "Document Type and Function are required to create a number card" msgstr "Dokumenttype (DocType) og funksjon er påkrevd for å opprette et tallkort" -#: frappe/permissions.py:152 +#: frappe/permissions.py:158 msgid "Document Type is not importable" msgstr "Dokumenttypen (DocType) kan ikke importeres" -#: frappe/permissions.py:148 +#: frappe/permissions.py:154 msgid "Document Type is not submittable" msgstr "Dokumenttypen (DocType) kan ikke registreres" @@ -8097,11 +8178,11 @@ msgid "Document Types and Permissions" msgstr "Dokumenttyper (DocType) og rettigheter" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:2012 +#: frappe/model/document.py:2011 msgid "Document Unlocked" msgstr "Dokument ulåst" -#: frappe/database/query.py:541 +#: frappe/database/query.py:554 msgid "Document cannot be used as a filter value" msgstr "" @@ -8109,15 +8190,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "Dokumentfølging er ikke aktivert for denne brukeren." -#: 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 er blitt avbrutt" -#: frappe/public/js/frappe/list/list_view.js:1309 +#: frappe/public/js/frappe/list/list_view.js:1317 msgid "Document has been submitted" msgstr "Dokumentet er registrert" -#: 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 er i utkastmodus" @@ -8129,11 +8210,11 @@ msgstr "Dokumentet kan bare redigeres av brukere med rolle" msgid "Document not Relinked" msgstr "Dokumentet er ikke lenket på nytt" -#: 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 endret navn fra {0} til {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 "Dokumentnavnendring fra {0} til {1} er blitt satt i kø" @@ -8149,10 +8230,6 @@ msgstr "Dokument {0} allerede gjenopprettet" msgid "Document {0} has been set to state {1} by {2}" msgstr "Dokument {0} har blitt satt til tilstanden {1} av {2}" -#: frappe/client.py:433 -msgid "Document {0} {1} does not exist" -msgstr "Dokumentet {0} {1} finnes ikke" - #. Label of the documentation (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Documentation Link" @@ -8290,7 +8367,7 @@ msgstr "Last ned lenke" msgid "Download PDF" msgstr "Last ned PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:843 +#: frappe/public/js/frappe/views/reports/query_report.js:860 msgid "Download Report" msgstr "Last ned rapport" @@ -8374,7 +8451,7 @@ msgid "Due Date Based On" msgstr "Forfallsdato basert 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 "Dupliser" @@ -8382,19 +8459,15 @@ msgstr "Dupliser" msgid "Duplicate Entry" msgstr "Dupliser oppføring" -#: frappe/public/js/frappe/list/list_filter.js:120 +#: frappe/public/js/frappe/list/list_filter.js:137 msgid "Duplicate Filter Name" msgstr "Dupliser filternavn" -#: 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 "Dupliser navn" -#: frappe/public/js/frappe/form/grid.js:66 -msgid "Duplicate Row" -msgstr "Dupliser rad" - -#: frappe/public/js/frappe/form/form.js:210 +#: frappe/public/js/frappe/form/form.js:211 msgid "Duplicate current row" msgstr "Dupliser gjeldende rad" @@ -8402,6 +8475,18 @@ msgstr "Dupliser gjeldende rad" msgid "Duplicate field" msgstr "Dupliser felt" +#: 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' @@ -8489,9 +8574,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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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 @@ -8502,7 +8588,7 @@ msgstr "ESC" msgid "Edit" msgstr "Rediger" -#: 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 "Rediger" @@ -8512,7 +8598,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Rediger" -#: 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 "Rediger" @@ -8533,15 +8619,15 @@ msgstr "Rediger diagram" msgid "Edit Custom Block" msgstr "Rediger egendefinert blokk" -#: 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 "Rediger egendefinert HTML" -#: frappe/public/js/frappe/form/toolbar.js:652 +#: frappe/public/js/frappe/form/toolbar.js:655 msgid "Edit DocType" msgstr "Rediger dokumenttype (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 "Rediger dokumenttype (DocType)" @@ -8555,7 +8641,7 @@ msgstr "Rediger eksisterende" msgid "Edit Filters" msgstr "Rediger filtre" -#: 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 "Rediger filtre" @@ -8568,7 +8654,7 @@ msgstr "Rediger bunnfelt" msgid "Edit Format" msgstr "Rediger format" -#: frappe/public/js/frappe/form/quick_entry.js:326 +#: frappe/public/js/frappe/form/quick_entry.js:373 msgid "Edit Full Form" msgstr "Rediger hele skjemaet" @@ -8626,7 +8712,7 @@ msgstr "Rediger hurtigliste" msgid "Edit Shortcut" msgstr "Rediger snarvei" -#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29 +#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21 msgid "Edit Sidebar" msgstr "" @@ -8649,11 +8735,11 @@ msgstr "Redigeringsmodus" msgid "Edit the {0} Doctype" msgstr "Rediger {0} dokumenttypen (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 "Rediger for å legge til innhold" -#: 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 "Rediger svaret ditt" @@ -8709,6 +8795,7 @@ msgstr "Elementvelger" #. 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' @@ -8724,12 +8811,14 @@ msgstr "Elementvelger" #: 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 @@ -8764,7 +8853,7 @@ msgstr "E-postkonto deaktivert." msgid "Email Account Name" msgstr "Navn på e-postkonto" -#: frappe/core/doctype/user/user.py:787 +#: frappe/core/doctype/user/user.py:790 msgid "Email Account added multiple times" msgstr "E-postkonto lagt til flere ganger" @@ -8962,7 +9051,7 @@ msgstr "E-posten er flyttet til papirkurven" msgid "Email is mandatory to create User Email" msgstr "Brukeren må ha en e-postadresse for å motta varsler." -#: 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-posten er ikke sendt til {0} (avmeldt / deaktivert)" @@ -9001,7 +9090,7 @@ msgstr "Det vil bli sendt e-post med informasjon om neste mulige arbeidsflythand msgid "Embed code copied" msgstr "Den innbygde koden er kopiert" -#: frappe/database/query.py:2151 +#: frappe/database/query.py:2230 msgid "Empty alias is not allowed" msgstr "Tomt alias er ikke tillatt" @@ -9009,7 +9098,7 @@ msgstr "Tomt alias er ikke tillatt" msgid "Empty column" msgstr "Tom kolonne" -#: frappe/database/query.py:2094 +#: frappe/database/query.py:2172 msgid "Empty string arguments are not allowed" msgstr "Tomme strenger er ikke tillatt som argumenter" @@ -9329,11 +9418,11 @@ msgstr "Sørg for at søkestiene for brukere og grupper er riktige." msgid "Enter Client Id and Client Secret in Google Settings." msgstr "Skriv inn klient-ID og klienthemmelighet i Google-innstillinger." -#: frappe/templates/includes/login/login.js:351 +#: frappe/templates/includes/login/login.js:350 msgid "Enter Code displayed in OTP App." msgstr "Skriv inn koden som vises i OTP-appen." -#: 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 "" @@ -9360,6 +9449,10 @@ msgstr "Skriv inn standardverdifelt (nøkler) og verdier. Hvis du legger til fle msgid "Enter folder name" msgstr "Skriv inn mappenavn" +#: 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 @@ -9390,7 +9483,7 @@ msgstr "Enhetsnavn" msgid "Entity Type" msgstr "Enhetstype" -#: frappe/public/js/frappe/list/base_list.js:1256 +#: frappe/public/js/frappe/list/base_list.js:1273 #: frappe/public/js/frappe/ui/filters/filter.js:16 msgid "Equals" msgstr "Tilsvarer" @@ -9424,7 +9517,7 @@ msgstr "Tilsvarer" msgid "Error" msgstr "Feil" -#: 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 "Feil" @@ -9444,7 +9537,7 @@ msgstr "Feillogger" msgid "Error Message" msgstr "Feilmelding" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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 "Feil ved tilkobling til QZ Tray-applikasjonen...

Du må ha QZ Tray-applikasjonen installert og kjørende for å bruke Raw Print-funksjonen.

Klikk her for å laste ned og installere QZ Tray.
Klikk her for å lære mer om Raw Printing." @@ -9482,15 +9575,15 @@ msgstr "Feil i varselet" msgid "Error in print format on line {0}: {1}" msgstr "Feil i utskriftsformat på linjen {0}: {1}" -#: frappe/api/v2.py:156 +#: frappe/api/v2.py:180 msgid "Error in {0}.get_list: {1}" msgstr "Feil i {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 "" @@ -9506,15 +9599,15 @@ msgstr "Feil under evaluering av varsel {0}. Vennligst rett malen din." 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 "Feil: Data mangler i tabellen {0}" -#: frappe/model/base_document.py:914 +#: frappe/model/base_document.py:933 msgid "Error: Value missing for {0}: {1}" msgstr "Feil: Mangler verdi for {0}: {1}" -#: frappe/model/base_document.py:908 +#: frappe/model/base_document.py:927 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "Feil: {0} Rad #{1}: Verdi mangler for: {2}" @@ -9524,6 +9617,12 @@ msgstr "Feil: {0} Rad #{1}: Verdi mangler for: {2}" msgid "Errors" msgstr "Feil" +#. 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' @@ -9542,6 +9641,11 @@ msgstr "Eventkategori" msgid "Event Frequency" msgstr "Eventfrekvens" +#. 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 @@ -9567,11 +9671,11 @@ msgstr "Hendelse synkronisert med Google Kalender." msgid "Event Type" msgstr "Type hendelse" -#: frappe/public/js/frappe/ui/notifications/notifications.js:67 +#: frappe/public/js/frappe/ui/notifications/notifications.js:74 msgid "Events" msgstr "Hendelser" -#: frappe/desk/doctype/event/event.py:278 +#: frappe/desk/doctype/event/event.py:328 msgid "Events in Today's Calendar" msgstr "Hendelser i dagens kalender" @@ -9593,6 +9697,7 @@ msgid "Exact Copies" msgstr "Eksakte kopier" #. 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 "Eksempel" @@ -9663,7 +9768,7 @@ msgstr "Kjør kode" msgid "Executing..." msgstr "Utfører..." -#: frappe/public/js/frappe/views/reports/query_report.js:2162 +#: frappe/public/js/frappe/views/reports/query_report.js:2223 msgid "Execution Time: {0} sec" msgstr "Utførelsestid: {0} sek" @@ -9684,21 +9789,21 @@ msgstr "Eksisterende rolle" msgid "Expand" msgstr "Utvid" -#: 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 "Utvid" -#: frappe/public/js/frappe/views/reports/query_report.js:2143 +#: frappe/public/js/frappe/views/reports/query_report.js:2199 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Utvid alle" -#: frappe/database/query.py:684 +#: frappe/database/query.py:706 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Forventet ‘AND’ eller ‘OR’, men fant: {0}." -#: frappe/public/js/frappe/form/templates/form_sidebar.html:41 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:65 msgid "Experimental" msgstr "Eksperimentell" @@ -9750,20 +9855,21 @@ msgstr "Utløpstid for QR-kodebildesiden" #: 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:1899 +#: frappe/public/js/frappe/views/reports/report_view.js:1634 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Eksporter" -#: 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 "Eksport" -#: 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 "Eksporter 1 post" @@ -9802,11 +9908,11 @@ msgstr "Eksporter rapport: {0}" msgid "Export Type" msgstr "Eksporttype" -#: 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 "Eksporter alle samsvarende 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 "Eksporter alle {0} rader?" @@ -9822,6 +9928,10 @@ msgstr "Eksporter i bakgrunnen" msgid "Export not allowed. You need {0} role to export." msgstr "Eksport er ikke tillatt. Du trenger rollen {0} for å eksportere." +#: 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 @@ -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:1958 #: 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:1353 #: 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:945 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" @@ -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:2220 #: 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:1919 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:902 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:1716 +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 @@ -12242,7 +12353,7 @@ msgstr "Tips: Bruk symboler, tall og store bokstaver i passordet" #: 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 @@ -12325,18 +12436,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on msgstr "Du har nok ikke tilgang til noe arbeidsområde ennå, men du kan opprette et for deg selv. Klikk på knappen Opprett arbeidsområde for å opprette et.
" #. 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" @@ -12387,7 +12498,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' @@ -12408,11 +12518,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 "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" @@ -12423,6 +12538,10 @@ msgstr "" msgid "Icon Type" msgstr "" +#: frappe/desk/page/desktop/desktop.js:1004 +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" @@ -12454,13 +12573,13 @@ msgstr "Hvis «Bruk strenge brukerrettigheter» er valgt, og det finnes en bruke msgid "If Checked workflow status will not override status in list view" msgstr "Hvis avmerket arbeidsflytstatus ikke overstyrer statusen i listevisningen" -#: 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 "Hvis eier" -#: 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 "Hvis en rolle ikke har tilgang på nivå 0, er høyere nivåer meningsløse." @@ -12587,12 +12706,20 @@ msgstr "Hvis ikke angitt, vil valutapresisjonen avhenge av tallformatet" msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." msgstr "Hvis dette er angitt, kan bare brukere med disse rollene få tilgang til dette diagrammet. Hvis ikke angitt, vil tillatelser fra dokumenttype (DocType) eller rapport bli brukt." +#: 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 "Hvis brukeren har merket av for en rolle, blir brukeren en «Systembruker». «Systembruker» har tilgang til skrivebordet." -#: 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 "Hvis disse instruksjonene ikke var til hjelp, kan du legge inn forslag på GitHub Issues." @@ -12692,7 +12819,7 @@ msgstr "Ignorer vedlegg over denne størrelsen" msgid "Ignored Apps" msgstr "Ignorerte apper" -#: frappe/model/workflow.py:202 +#: frappe/model/workflow.py:223 msgid "Illegal Document Status for {0}" msgstr "Ulovlig dokumentstatus for {0}" @@ -12758,11 +12885,11 @@ msgstr "Bildevisning" msgid "Image Width" msgstr "Bildebredde" -#: frappe/core/doctype/doctype/doctype.py:1521 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Image field must be a valid fieldname" msgstr "Bildefeltet må være et gyldig feltnavn" -#: frappe/core/doctype/doctype/doctype.py:1523 +#: frappe/core/doctype/doctype/doctype.py:1537 msgid "Image field must be of type Attach Image" msgstr "Bildefeltet må være av typen Legg ved bilde" @@ -12796,7 +12923,7 @@ msgstr "Opptre som bruker {0}" msgid "Impersonated by {0}" msgstr "{0} opptrer som bruker" -#: frappe/public/js/frappe/ui/toolbar/navbar.html:23 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:13 msgid "Impersonating {0}" msgstr "Opptrer som bruker {0}" @@ -12814,11 +12941,12 @@ msgstr "Implisitt" #: 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" -#: 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" @@ -13041,15 +13169,15 @@ msgid "Include Web View Link in Email" msgstr "Inkluder lenke til nettvisning 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:1690 msgid "Include filters" msgstr "Inkluder filtre" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "Inkluder skjulte kolonner" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 msgid "Include indentation" msgstr "Inkluder innrykk" @@ -13116,11 +13244,11 @@ msgstr "Feil bruker eller passord" msgid "Incorrect Verification code" msgstr "Feil bekreftelseskode" -#: frappe/model/document.py:1604 +#: frappe/model/document.py:1603 msgid "Incorrect value in row {0}:" msgstr "Ugyldig verdi i rad {0}:" -#: frappe/model/document.py:1606 +#: frappe/model/document.py:1605 msgid "Incorrect value:" msgstr "Ugyldig verdi:" @@ -13172,7 +13300,7 @@ msgstr "Indikator" msgid "Indicator Color" msgstr "Indikatorfarge" -#: frappe/public/js/frappe/views/workspace/workspace.js:477 +#: frappe/public/js/frappe/views/workspace/workspace.js:525 msgid "Indicator color" msgstr "Indikatorfarge" @@ -13219,15 +13347,15 @@ msgstr "Sett inn ovenfor" #. 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:1964 msgid "Insert After" msgstr "Sett inn etter" -#: 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 "\"Sett inn etter\" kan ikke angis 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 "Feltet \"Sett inn etter\" '{0}' nevnt i det tilpassede feltet '{1}', med etiketten '{2}', finnes ikke" @@ -13257,8 +13385,8 @@ msgstr "Sett inn 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 "Installer {0} fra Marketplace" @@ -13284,15 +13412,15 @@ msgstr "Installerte apper" msgid "Instructions" msgstr "Instruksjoner" -#: frappe/templates/includes/login/login.js:261 +#: frappe/templates/includes/login/login.js:259 msgid "Instructions Emailed" msgstr "Instruksjoner sendt på e-post" -#: frappe/permissions.py:855 +#: frappe/permissions.py:861 msgid "Insufficient Permission Level for {0}" msgstr "Utilstrekkelig tillatelsesnivå for {0}" -#: frappe/database/query.py:1266 +#: frappe/database/query.py:1308 msgid "Insufficient Permission for {0}" msgstr "Utilstrekkelige rettigheter for {0}" @@ -13360,7 +13488,7 @@ msgstr "Interesser" msgid "Intermediate" msgstr "Mellomliggende" -#: frappe/public/js/frappe/request.js:235 +#: frappe/public/js/frappe/request.js:233 msgid "Internal Server Error" msgstr "Intern serverfeil" @@ -13369,6 +13497,11 @@ msgstr "Intern serverfeil" msgid "Internal record of document shares" msgstr "Intern oversikt over dokumentdelinger" +#. 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" @@ -13408,13 +13541,13 @@ msgid "Invalid" msgstr "Ugyldig" #: 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 "Ugyldig «depends_on»-uttrykk" -#: 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 "Ugyldig «depends_on»-uttrykk satt i filteret {0}" @@ -13454,7 +13587,7 @@ msgstr "Ugyldig dato" msgid "Invalid DocType" msgstr "Ugyldig dokumenttype (DocType)" -#: frappe/database/query.py:342 +#: frappe/database/query.py:345 msgid "Invalid DocType: {0}" msgstr "Ugyldig dokumenttype (DocType): {0}" @@ -13462,7 +13595,8 @@ msgstr "Ugyldig dokumenttype (DocType): {0}" msgid "Invalid Doctype" msgstr "Ugyldig dokumenttype (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 "Ugyldig feltnavn" @@ -13470,8 +13604,8 @@ msgstr "Ugyldig feltnavn" msgid "Invalid File URL" msgstr "Ugyldig 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 "Ugyldig filter" @@ -13495,7 +13629,7 @@ msgstr "Ugyldig lenke" msgid "Invalid Login Token" msgstr "Ugyldig påloggingstoken" -#: frappe/templates/includes/login/login.js:290 +#: frappe/templates/includes/login/login.js:288 msgid "Invalid Login. Try again." msgstr "Ugyldig pålogging. Prøv på nytt." @@ -13503,7 +13637,7 @@ msgstr "Ugyldig pålogging. Prøv på nytt." msgid "Invalid Mail Server. Please rectify and try again." msgstr "Ugyldig e-postserver. Vennligst rett opp og prøv igjen." -#: frappe/model/naming.py:109 +#: frappe/model/naming.py:107 msgid "Invalid Naming Series: {}" msgstr "Ugyldig nummerserie: {}" @@ -13514,8 +13648,8 @@ msgstr "Ugyldig nummerserie: {}" msgid "Invalid Operation" msgstr "Ugyldig operasjon" -#: 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 "Ugyldig alternativ" @@ -13527,7 +13661,7 @@ msgstr "Ugyldig utgående e-postserver eller port: {0}" msgid "Invalid Output Format" msgstr "Ugyldig utdataformat" -#: frappe/model/base_document.py:126 +#: frappe/model/base_document.py:128 msgid "Invalid Override" msgstr "Ugyldig overstyring" @@ -13540,11 +13674,11 @@ msgstr "Ugyldige parametere." msgid "Invalid Password" msgstr "Ugyldig passord" -#: frappe/utils/__init__.py:125 +#: frappe/utils/__init__.py:116 msgid "Invalid Phone Number" msgstr "Ugyldig 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 "Ugyldig forespørsel" @@ -13553,7 +13687,7 @@ msgstr "Ugyldig forespørsel" msgid "Invalid Search Field {0}" msgstr "Ugyldig søkefelt {0}" -#: frappe/core/doctype/doctype/doctype.py:1229 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Invalid Table Fieldname" msgstr "Ugyldig tabellfeltnavn" @@ -13584,7 +13718,7 @@ msgstr "Ugyldig webhook-hemmelighet" msgid "Invalid aggregate function" msgstr "Ugyldig aggregatfunksjon" -#: frappe/database/query.py:2157 +#: frappe/database/query.py:2236 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Ugyldig aliasformat: {0}. Aliaset må være en enkel identifikator." @@ -13592,19 +13726,19 @@ msgstr "Ugyldig aliasformat: {0}. Aliaset må være en enkel identifikator." msgid "Invalid app" msgstr "Ugyldig 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 "Ugyldig argumentformat: {0}. Bare anførselstegn eller enkle feltnavn er tillatt." -#: 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 "Ugyldige tegn i feltnavnet: {0}. Bare bokstaver, tall og understrekninger er tillatt." -#: frappe/database/query.py:971 +#: frappe/database/query.py:1014 msgid "Invalid characters in table name: {0}" msgstr "Ugyldige tegn i tabellnavnet: {0}" @@ -13612,18 +13746,22 @@ msgstr "Ugyldige tegn i tabellnavnet: {0}" msgid "Invalid column" msgstr "Ugyldig kolonne" -#: frappe/database/query.py:713 +#: frappe/database/query.py:735 msgid "Invalid condition type in nested filters: {0}" msgstr "Ugyldig betingelsestype i nestede filtre: {0}" -#: frappe/database/query.py:1244 +#: frappe/database/query.py:1286 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "Ugyldig retning i Sorter etter: {0}. Må være '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 "Ugyldig dokumentstatus" +#: 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 "Ugyldig uttrykk satt i filteret {0}" @@ -13632,11 +13770,11 @@ msgstr "Ugyldig uttrykk satt i filteret {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Ugyldig uttrykk satt i filteret {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 "Ugyldig feltformat for SELECT: {0}. Feltnavn må være enkelt, backticked (`), tabellkvalifisert, aliasert, eller inneholde '*'." -#: 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 "Ugyldig feltformat i {0}: {1}. Bruk 'field', 'link_field.field' eller 'child_table.field'." @@ -13644,11 +13782,11 @@ msgstr "Ugyldig feltformat i {0}: {1}. Bruk 'field', 'link_field.field' eller 'c msgid "Invalid field name {0}" msgstr "Ugyldig feltnavn {0}" -#: frappe/database/query.py:1070 +#: frappe/database/query.py:1113 msgid "Invalid field type: {0}" msgstr "Ugyldig felttype: {0}" -#: frappe/core/doctype/doctype/doctype.py:1100 +#: frappe/core/doctype/doctype/doctype.py:1103 msgid "Invalid fieldname '{0}' in autoname" msgstr "Ugyldig feltnavn ‘{0}’ i automatisk navngivning" @@ -13656,11 +13794,11 @@ msgstr "Ugyldig feltnavn ‘{0}’ i automatisk navngivning" msgid "Invalid file path: {0}" msgstr "Ugyldig filsti: {0}" -#: frappe/database/query.py:696 +#: frappe/database/query.py:718 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "Ugyldig filterbetingelse: {0}. Forventet en liste eller tuppel." -#: frappe/database/query.py:791 +#: frappe/database/query.py:825 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "Ugyldig filterfeltformat: {0}. Bruk 'fieldname' eller 'link_fieldname.target_fieldname'." @@ -13668,7 +13806,7 @@ msgstr "Ugyldig filterfeltformat: {0}. Bruk 'fieldname' eller 'link_fieldname.ta msgid "Invalid filter: {0}" msgstr "Ugyldig 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 "Ugyldig argumenttype for funksjon: {0}. Bare strenger, tall, lister og None er tillatt." @@ -13685,19 +13823,19 @@ msgstr "Ugyldig json lagt til i de egendefinerte alternativene: {0}" msgid "Invalid key" msgstr "Ugyldig nøkkel" -#: frappe/model/naming.py:498 +#: frappe/model/naming.py:496 msgid "Invalid name type (integer) for varchar name column" msgstr "Ugyldig navnetype (heltall) for varchar-kolonnen ‘name’" -#: frappe/model/naming.py:62 +#: frappe/model/naming.py:60 msgid "Invalid naming series {}: dot (.) missing" msgstr "Ugyldig nummerserie {}: punktum (.) mangler" -#: 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 "Ugyldig nummerserie {}: punktum (.) mangler før de numeriske plassholderne. Vennligst bruk et 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 "" @@ -13721,11 +13859,11 @@ msgstr "Ugyldig forespørselsdel" msgid "Invalid role" msgstr "Ugyldig rolle" -#: frappe/database/query.py:744 +#: frappe/database/query.py:776 msgid "Invalid simple filter format: {0}" msgstr "Ugyldig 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 "Ugyldig start for filterbetingelse: {0}. Forventet en liste eller tuppel." @@ -13742,24 +13880,24 @@ msgstr "Ugyldig tokenstatus! Sjekk om tokenet er opprettet av OAuth-brukeren." msgid "Invalid username or password" msgstr "Ugyldig brukernavn eller passord" -#: frappe/model/naming.py:176 +#: frappe/model/naming.py:174 msgid "Invalid value specified for UUID: {}" msgstr "Ugyldig verdi angitt for 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 "Ugyldige verdier for felt:" -#: frappe/printing/page/print/print.js:673 +#: frappe/printing/page/print/print.js:681 msgid "Invalid wkhtmltopdf version" msgstr "Ugyldig wkhtmltopdf-versjon" -#: frappe/core/doctype/doctype/doctype.py:1579 +#: frappe/core/doctype/doctype/doctype.py:1593 msgid "Invalid {0} condition" msgstr "Ugyldig {0} tilstand" -#: frappe/database/query.py:1964 +#: frappe/database/query.py:2042 msgid "Invalid {0} dictionary format" msgstr "" @@ -13887,7 +14025,7 @@ msgstr "Er dynamisk URL?" msgid "Is Folder" msgstr "Er mappe" -#: frappe/public/js/frappe/list/list_filter.js:95 +#: frappe/public/js/frappe/list/list_filter.js:112 msgid "Is Global" msgstr "Er global" @@ -13958,7 +14096,7 @@ msgstr "Er offentlig" msgid "Is Published Field" msgstr "Er publisert felt" -#: frappe/core/doctype/doctype/doctype.py:1530 +#: frappe/core/doctype/doctype/doctype.py:1544 msgid "Is Published Field must be a valid fieldname" msgstr "\"Er publisert felt\" må være et gyldig feltnavn" @@ -14203,8 +14341,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "Delta i videokonferanse 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 "Hopp til felt" @@ -14527,7 +14665,7 @@ msgstr "Hjelp for etikett" msgid "Label and Type" msgstr "Etikett og type" -#: frappe/custom/doctype/custom_field/custom_field.py:146 +#: frappe/custom/doctype/custom_field/custom_field.py:147 msgid "Label is mandatory" msgstr "Etikett er påkrevet" @@ -14550,7 +14688,7 @@ msgstr "Liggende" #: 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" @@ -14596,6 +14734,14 @@ msgstr "De siste 90 dager" msgid "Last Active" msgstr "Sist aktiv" +#: 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" @@ -14720,6 +14866,11 @@ msgstr "Forrige år" msgid "Last synced {0}" msgstr "Sist synkronisert {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 "Tilbakestilling av layout" @@ -14747,9 +14898,15 @@ msgstr "Forlat denne samtalen" msgid "Ledger" msgstr "Hovedbok" +#. 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 @@ -14843,7 +15000,7 @@ msgstr "Brev" #. 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 @@ -14872,7 +15029,7 @@ msgstr "Navn på brevhode" msgid "Letter Head Scripts" msgstr "Brevhodeskript" -#: 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 "Brevhode kan ikke være både deaktivert og standard" @@ -14894,7 +15051,7 @@ msgstr "Brevhode 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 er for tillatelser på dokumentnivå, høyere nivåer for tillatelser på feltnivå." @@ -14935,7 +15092,7 @@ msgstr "Lyst 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:1273 #: frappe/public/js/frappe/ui/filters/filter.js:18 msgid "Like" msgstr "Liker" @@ -14959,7 +15116,7 @@ msgstr "Likerklikk" msgid "Limit" msgstr "Grense" -#: frappe/database/query.py:299 +#: frappe/database/query.py:302 msgid "Limit must be a non-negative integer" msgstr "Grensen må være et ikke-negativt heltall" @@ -15085,7 +15242,7 @@ msgstr "Lenketittel" #: 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" @@ -15103,7 +15260,7 @@ msgstr "«Lenke til» 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 "Lenketype" @@ -15146,6 +15303,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 @@ -15167,8 +15325,8 @@ msgstr "Lenker" #: 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" @@ -15198,7 +15356,7 @@ msgstr "Listefilter" msgid "List Settings" msgstr "Innstillinger for lister" -#: 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 "Innstillinger for lister" @@ -15212,7 +15370,7 @@ msgstr "Listevisning" msgid "List View Settings" msgstr "Innstillinger for listevisning" -#: 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 "List opp en dokumenttype (DocType)" @@ -15239,7 +15397,7 @@ msgstr "Liste over utførte oppdateringer" msgid "List setting message" msgstr "Melding om listeinnstillinger" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Lists" msgstr "Lister" @@ -15267,9 +15425,9 @@ msgstr "Last inn mer" #: 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/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:1136 msgid "Loading" msgstr "Laster inn" @@ -15286,7 +15444,7 @@ msgid "Loading versions..." msgstr "Laster inn versjoner ..." #: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 -#: frappe/public/js/frappe/form/sidebar/share.js:51 +#: frappe/public/js/frappe/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -15297,7 +15455,8 @@ msgid "Loading..." msgstr "Laster inn..." #. 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 "Sted" @@ -15370,6 +15529,11 @@ msgstr "Logget ut" msgid "Login" msgstr "Logg inn" +#. 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" @@ -15445,7 +15609,7 @@ msgstr "Logg inn for å starte en ny diskusjon" msgid "Login to {0}" msgstr "Logg inn på {0}" -#: frappe/templates/includes/login/login.js:319 +#: frappe/templates/includes/login/login.js:318 msgid "Login token required" msgstr "Påloggingstoken kreves" @@ -15512,8 +15676,7 @@ msgid "Logout From All Devices After Changing Password" msgstr "Logg ut fra alle enheter etter å ha endret passord" #. 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 "Logger" @@ -15544,7 +15707,7 @@ msgstr "Det ser ut som du ikke har endret verdien" msgid "Looks like you haven’t added any third party apps." msgstr "Det ser ut til at du ikke har lagt til noen tredjepartsapper." -#: 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 ser ut til at du ikke har mottatt noen varsler." @@ -15694,7 +15857,7 @@ msgstr "Påkrevd felt kreves i tabellen {0}, rad {1}" msgid "Mandatory fields required in {0}" msgstr "Påkrevd felt kreves 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 "Påkrevd felt:" @@ -15756,7 +15919,7 @@ msgstr "Toppmarg" 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 "Merk alle som lest" @@ -15808,9 +15971,12 @@ msgstr "Markedsføringssjef" #. 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" @@ -15872,7 +16038,7 @@ msgstr "Maks automatisk e-postrapport per bruker" msgid "Max signups allowed per hour" msgstr "Maks antall påmeldinger tillatt per time" -#: 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 "Maks bredde for typen Valuta er 100px i raden {0}" @@ -15893,20 +16059,27 @@ msgstr "Maksgrensen for vedlegg på {0} er nådd." msgid "Maximum {0} rows allowed" msgstr "Maks {0} rader tillatt" +#. 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:947 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:168 msgid "Me" msgstr "Meg" #: frappe/core/page/permission_manager/permission_manager_help.html:14 -msgid "Meaning of Submit, Cancel, Amend" -msgstr "Betydningen av Registrer, Avbryte, Utvide" +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" @@ -15950,12 +16123,12 @@ msgstr "Omtale" msgid "Mentions" msgstr "Omtaler" -#: 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å sammen med eksisterende" @@ -15989,13 +16162,13 @@ msgstr "Det er kun mulig å slå sammen gruppe med gruppe eller bladnode med bla #: 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 "Melding" -#: 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 "Melding" @@ -16026,7 +16199,7 @@ msgstr "Melding sendt" msgid "Message Type" msgstr "Meldingstype" -#: frappe/public/js/frappe/views/communication.js:947 +#: frappe/public/js/frappe/views/communication.js:1018 msgid "Message clipped" msgstr "Melding kuttet" @@ -16123,7 +16296,7 @@ msgstr "Metadata" msgid "Method" msgstr "Metode" -#: frappe/__init__.py:467 +#: frappe/__init__.py:465 msgid "Method Not Allowed" msgstr "Ikke tillatt metode" @@ -16212,7 +16385,7 @@ msgstr "Fr." msgid "Missing DocType" msgstr "Manglende DocType" -#: frappe/core/doctype/doctype/doctype.py:1541 +#: frappe/core/doctype/doctype/doctype.py:1555 msgid "Missing Field" msgstr "Manglende felt" @@ -16297,7 +16470,7 @@ msgstr "Åpner modalvindu" #: 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 @@ -16344,9 +16517,8 @@ msgstr "Onboarding av modul" #. 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" @@ -16363,7 +16535,7 @@ msgstr "Nullstilling av prosess for onboarding av modul" msgid "Module to Export" msgstr "Modul for eksport" -#: frappe/modules/utils.py:280 +#: frappe/modules/utils.py:323 msgid "Module {} not found" msgstr "Modul {} ble ikke funnet" @@ -16478,7 +16650,7 @@ msgstr "Flere artikler om {0}" msgid "More content for the bottom of the page." msgstr "Mer innhold nederst på siden." -#: frappe/public/js/frappe/ui/sort_selector.js:193 +#: frappe/public/js/frappe/ui/sort_selector.js:199 msgid "Most Used" msgstr "Mest brukt" @@ -16493,7 +16665,7 @@ msgstr "Mest sannsynlig er passordet for langt." msgid "Move" msgstr "Flytt" -#: frappe/public/js/frappe/form/grid_row.js:194 +#: frappe/public/js/frappe/form/grid_row.js:196 msgid "Move To" msgstr "Flytt til" @@ -16505,19 +16677,19 @@ msgstr "Flytt til søppelbøtte" msgid "Move current and all subsequent sections to a new tab" msgstr "Flytt gjeldende og alle påfølgende seksjoner til en ny fane" -#: frappe/public/js/frappe/form/form.js:178 +#: frappe/public/js/frappe/form/form.js:179 msgid "Move cursor to above row" msgstr "Flytt markøren til raden over" -#: frappe/public/js/frappe/form/form.js:182 +#: frappe/public/js/frappe/form/form.js:183 msgid "Move cursor to below row" msgstr "Flytt markøren til raden under" -#: frappe/public/js/frappe/form/form.js:186 +#: frappe/public/js/frappe/form/form.js:187 msgid "Move cursor to next column" msgstr "Flytt markøren til neste kolonne" -#: frappe/public/js/frappe/form/form.js:190 +#: frappe/public/js/frappe/form/form.js:191 msgid "Move cursor to previous column" msgstr "Flytt markøren til forrige kolonne" @@ -16529,7 +16701,7 @@ msgstr "Flytt seksjoner til ny fane" msgid "Move the current field and the following fields to a new column" msgstr "Flytt gjeldende felt og de følgende feltene til en ny kolonne" -#: frappe/public/js/frappe/form/grid_row.js:169 +#: frappe/public/js/frappe/form/grid_row.js:171 msgid "Move to Row Number" msgstr "Flytt til radnummer" @@ -16647,7 +16819,7 @@ msgstr "Navn (Dokumentnavn)" msgid "Name already taken, please set a new name" msgstr "Navnet er allerede tatt, vennligst angi et nytt navn" -#: frappe/model/naming.py:512 +#: frappe/model/naming.py:510 msgid "Name cannot contain special characters like {0}" msgstr "Navnet kan ikke inneholde spesialtegn som {0}" @@ -16659,7 +16831,7 @@ msgstr "Navnet på dokumenttypen (DocType) du vil at dette feltet skal knyttes t msgid "Name of the new Print Format" msgstr "Navn på det nye utskriftsformatet" -#: frappe/model/naming.py:507 +#: frappe/model/naming.py:505 msgid "Name of {0} cannot be {1}" msgstr "Navnet på {0} kan ikke være {1}" @@ -16700,7 +16872,7 @@ msgstr "Navneregel" msgid "Naming Series" msgstr "Nummerserie" -#: frappe/model/naming.py:268 +#: frappe/model/naming.py:266 msgid "Naming Series mandatory" msgstr "Nummerserie påkrevet" @@ -16724,11 +16896,6 @@ msgstr "Element i navigasjonsfelt" msgid "Navbar Settings" msgstr "Innstillinger for navigasjonsfelt" -#. 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' @@ -16742,39 +16909,44 @@ msgstr "Mal for navigasjonsfelt" msgid "Navbar Template Values" msgstr "Verdier for navigasjonsfeltmal" -#: 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 "Naviger nedover i listen" -#: 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 "Naviger listen oppover" -#: frappe/public/js/frappe/ui/page.js:180 +#: frappe/public/js/frappe/ui/page.js:188 msgid "Navigate to main content" msgstr "Naviger til hovedinnholdet" +#. 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 "Navigasjonsinnstillinger" -#: frappe/public/js/frappe/list/list_view.js:486 +#: frappe/public/js/frappe/list/list_view.js:489 msgid "Need Help?" msgstr "Trenger du Hjelp?" -#: 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 "Trenger rollen Administrator for arbeidsområder for å redigere andre brukeres private arbeidsområde" -#: frappe/model/document.py:837 +#: frappe/model/document.py:836 msgid "Negative Value" msgstr "Negativ verdi" -#: frappe/database/query.py:665 +#: frappe/database/query.py:687 msgid "Nested filters must be provided as a list or tuple." msgstr "Nestede filtre må angis som en liste eller tuppel." @@ -16796,6 +16968,7 @@ msgstr "Aldri" #. 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 @@ -16812,7 +16985,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 adresse" @@ -16828,8 +17001,8 @@ msgstr "Ny kontakt" msgid "New Custom Block" msgstr "Ny egendefinert 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 "Nytt egendefinert utskriftsformat" @@ -16878,7 +17051,7 @@ msgstr "Ny melding fra nettstedets kontaktside" #. 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 "Nytt navn" @@ -16899,8 +17072,8 @@ msgstr "Ny onboarding" msgid "New Password" msgstr "Nytt passord" -#: 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 "Nytt navn på utskriftsformat" @@ -16927,8 +17100,8 @@ msgstr "Ny snarvei" msgid "New Users (Last 30 days)" msgstr "Nye brukere (siste 30 dager)" -#: 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 verdi" @@ -16936,7 +17109,7 @@ msgstr "Ny verdi" msgid "New Workflow Name" msgstr "Nytt navn på arbeidsflyt" -#: frappe/public/js/frappe/views/workspace/workspace.js:404 +#: frappe/public/js/frappe/views/workspace/workspace.js:452 msgid "New Workspace" msgstr "Nytt arbeidsområde" @@ -16981,32 +17154,32 @@ msgstr "Nye brukere må registreres manuelt av systemansvarlige." msgid "New value to be set" msgstr "Ny verdi som skal angis" -#: 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:190 +#: 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} opprettet" -#: 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} lagt til i oversiktspanelet {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} opprettet" @@ -17018,7 +17191,7 @@ msgstr "Ny {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Nye {} utgivelser for følgende apper er tilgjengelige" -#: frappe/core/doctype/user/user.py:853 +#: frappe/core/doctype/user/user.py:856 msgid "Newly created user {0} has no roles enabled." msgstr "Nylig opprettet bruker {0} har ingen roller aktivert." @@ -17039,7 +17212,7 @@ msgstr "Administrator for nyhetsbrev" msgid "Next" msgstr "Neste" -#: frappe/public/js/frappe/ui/slides.js:359 +#: frappe/public/js/frappe/ui/slides.js:373 msgctxt "Go to next slide" msgid "Next" msgstr "Neste" @@ -17066,12 +17239,16 @@ msgstr "De neste 7 dagene" msgid "Next Action Email Template" msgstr "Neste handling i e-postmal" +#: 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 "Neste handlinger HTML" -#: frappe/public/js/frappe/form/toolbar.js:336 +#: frappe/public/js/frappe/form/toolbar.js:357 msgid "Next Document" msgstr "" @@ -17138,20 +17315,24 @@ msgstr "Neste ved klikk" #. 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "Nei" @@ -17221,7 +17402,7 @@ msgstr "Ingen filtre angitt" msgid "No Google Calendar Event to sync." msgstr "Ingen Google Kalender-hendelse å synkronisere." -#: frappe/public/js/frappe/ui/capture.js:262 +#: frappe/public/js/frappe/ui/capture.js:263 msgid "No Images" msgstr "Ingen bilder" @@ -17240,23 +17421,23 @@ msgstr "Ingen LDAP-bruker funnet for 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 "Intet brevhode" -#: frappe/model/naming.py:489 +#: frappe/model/naming.py:487 msgid "No Name Specified for {0}" msgstr "Ingen navn spesifisert for {0}" -#: frappe/public/js/frappe/ui/notifications/notifications.js:346 +#: frappe/public/js/frappe/ui/notifications/notifications.js:355 msgid "No New notifications" msgstr "Ingen nye varsler" -#: frappe/core/doctype/doctype/doctype.py:1778 +#: frappe/core/doctype/doctype/doctype.py:1792 msgid "No Permissions Specified" msgstr "Ingen rettigheter spesifisert" @@ -17276,11 +17457,11 @@ msgstr "Ingen tillatte diagrammer på dette oversiktspanelet" msgid "No Preview" msgstr "Ingen forhåndsvisning" -#: frappe/printing/page/print/print.js:772 +#: frappe/printing/page/print/print.js:786 msgid "No Preview Available" msgstr "Ingen forhåndsvisning tilgjengelig" -#: frappe/printing/page/print/print.js:927 +#: frappe/printing/page/print/print.js:941 msgid "No Printer is Available." msgstr "Ingen skriver er tilgjengelig." @@ -17288,7 +17469,7 @@ msgstr "Ingen skriver er tilgjengelig." msgid "No RQ Workers connected. Try restarting the bench." msgstr "Ingen RQ-arbeidere er tilkoblet. Prøv å starte benken på nytt." -#: frappe/public/js/frappe/form/link_selector.js:135 +#: frappe/public/js/frappe/form/link_selector.js:143 msgid "No Results" msgstr "Ingen resultater" @@ -17296,7 +17477,7 @@ msgstr "Ingen resultater" msgid "No Results found" msgstr "Ingen resultater funnet" -#: frappe/core/doctype/user/user.py:854 +#: frappe/core/doctype/user/user.py:857 msgid "No Roles Specified" msgstr "Ingen roller spesifisert" @@ -17312,7 +17493,7 @@ msgstr "Ingen forslag" msgid "No Tags" msgstr "Ingen stikkord" -#: frappe/public/js/frappe/ui/notifications/notifications.js:473 +#: frappe/public/js/frappe/ui/notifications/notifications.js:482 msgid "No Upcoming Events" msgstr "Ingen kommende hendelser" @@ -17332,7 +17513,7 @@ msgstr "Ingen automatiske optimaliseringsforslag tilgjengelig." msgid "No changes in document" msgstr "Ingen endringer i dokumentet" -#: frappe/public/js/frappe/views/workspace/workspace.js:707 +#: frappe/public/js/frappe/views/workspace/workspace.js:756 msgid "No changes made" msgstr "Ingen endringer er gjort" @@ -17444,11 +17625,11 @@ msgstr "Antall rader (maks. 500)" msgid "No of Sent SMS" msgstr "Antall sendte 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 rettigheter for {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 "Ingen rettigheter til '{0}' {1}" @@ -17457,7 +17638,7 @@ msgstr "Ingen rettigheter til '{0}' {1}" msgid "No permission to read {0}" msgstr "Ingen rettigheter til å lese {0}" -#: frappe/share.py:216 +#: frappe/share.py:221 msgid "No permission to {0} {1} {2}" msgstr "Ingen rettigheter til {0} {1} {2}" @@ -17473,7 +17654,7 @@ msgstr "Ingen oppføringer finnes i {0}" msgid "No records tagged." msgstr "Ingen poster har stikkord." -#: 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 "Ingen oppføringer eksporteres" @@ -17481,7 +17662,7 @@ msgstr "Ingen oppføringer eksporteres" msgid "No rows" msgstr "Ingen rader" -#: frappe/public/js/frappe/list/list_view.js:2376 +#: frappe/public/js/frappe/list/list_view.js:2404 msgid "No rows selected" msgstr "" @@ -17493,11 +17674,12 @@ msgstr "Ikke noe emne" msgid "No template found at path: {0}" msgstr "Ingen mal funnet på stien: {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 "Ingen verdier å vise" @@ -17509,7 +17691,7 @@ msgstr "Ingen {0}" msgid "No {0} found" msgstr "Ingen {0} funnet" -#: 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 "Ingen {0} funnet med samsvarende filtre. Fjern filtrene for å se alle {0}." @@ -17518,7 +17700,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 "Nr." @@ -17561,12 +17743,12 @@ msgstr "Normaliserte kopier" msgid "Normalized Query" msgstr "Normalisert spørring" -#: 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 "Ikke tillatt" -#: frappe/templates/includes/login/login.js:259 +#: frappe/templates/includes/login/login.js:257 msgid "Not Allowed: Disabled User" msgstr "Ikke tillatt: Deaktivert bruker" @@ -17608,7 +17790,7 @@ msgstr "Ikke koblet til noen oppføring" msgid "Not Nullable" msgstr "Ikke 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 @@ -17617,7 +17799,7 @@ msgstr "Ikke nullbar" msgid "Not Permitted" msgstr "Ikke tillatt" -#: frappe/desk/query_report.py:631 +#: frappe/desk/query_report.py:630 msgid "Not Permitted to read {0}" msgstr "Ingen rettigheter til å lese {0}" @@ -17626,8 +17808,8 @@ msgstr "Ingen rettigheter til å lese {0}" msgid "Not Published" msgstr "Ikke publisert" -#: 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 @@ -17661,15 +17843,15 @@ msgstr "Ikke angitt" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Ikke en gyldig kommaseparert verdi (CSV-fil)" -#: frappe/core/doctype/user/user.py:304 +#: frappe/core/doctype/user/user.py:307 msgid "Not a valid User Image." msgstr "Ikke et gyldig brukerbilde." -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:135 msgid "Not a valid Workflow Action" msgstr "Ikke en gyldig arbeidsflythandling" -#: frappe/templates/includes/login/login.js:255 +#: frappe/templates/includes/login/login.js:253 msgid "Not a valid user" msgstr "Ikke en gyldig bruker" @@ -17677,7 +17859,7 @@ msgstr "Ikke en gyldig bruker" msgid "Not active" msgstr "Ikke aktiv" -#: frappe/permissions.py:389 +#: frappe/permissions.py:395 msgid "Not allowed for {0}: {1}" msgstr "Ikke tillatt for {0}: {1}" @@ -17697,11 +17879,11 @@ msgstr "Ikke tillatt å skrive ut avbrutte dokumenter" msgid "Not allowed to print draft documents" msgstr "Ikke tillatt å skrive ut avbrutte dokumenter" -#: frappe/permissions.py:219 +#: frappe/permissions.py:225 msgid "Not allowed via controller permission check" msgstr "Ikke tillatt via tillatelseskontroll for kontrolleren" -#: 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 "Ikke funnet" @@ -17714,11 +17896,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Ikke i utviklermodus! Angi i site_config.json, eller opprett en egendefinert dokumenttype (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 "Ikke tillatt" @@ -17746,7 +17928,7 @@ msgstr "Notat sett av" msgid "Note:" msgstr "Notat:" -#: 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 "Merk: Hvis du endrer sidenavnet, brytes tidligere URL-adresser til denne siden." @@ -17778,7 +17960,7 @@ msgstr "Merk: Din forespørsel om sletting av konto vil bli behandlet innen {0} msgid "Notes:" msgstr "Notater:" -#: frappe/public/js/frappe/ui/notifications/notifications.js:523 +#: frappe/public/js/frappe/ui/notifications/notifications.js:532 msgid "Nothing New" msgstr "Intet nytt" @@ -17791,7 +17973,7 @@ msgid "Nothing left to undo" msgstr "Ingenting igjen å angre" #: frappe/public/js/frappe/list/base_list.js:365 -#: frappe/public/js/frappe/views/reports/query_report.js:105 +#: 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" @@ -17802,11 +17984,13 @@ msgid "Nothing to update" msgstr "Ingenting å oppdatere" #. 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 "Varsling" @@ -17822,7 +18006,7 @@ msgstr "Mottaker av varselet" #. 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 "Innstillinger for varsling" @@ -17831,11 +18015,6 @@ msgstr "Innstillinger for varsling" msgid "Notification Subscribed Document" msgstr "Dokument med abbonnert varsling" -#. 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 "Varsel sendt til" @@ -17853,13 +18032,15 @@ msgid "Notification: user {0} has no Mobile number set" msgstr "Varsel: bruker {0} har ikke angitt noe mobilnummer" #. 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 "Varsler" -#: frappe/public/js/frappe/ui/notifications/notifications.js:330 +#: frappe/public/js/frappe/ui/notifications/notifications.js:339 msgid "Notifications Disabled" msgstr "Varsler deaktivert" @@ -18095,7 +18276,7 @@ msgstr "Engangspassordet er tilbakestilt. Ny registrering kreves ved neste pålo 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-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,9 +18897,9 @@ 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:1884 msgid "PDF" msgstr "PDF" @@ -18719,7 +18908,9 @@ 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" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20584,11 @@ 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." @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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" @@ -23530,11 +23732,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 +23762,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 +23802,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 +23832,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 +23889,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 +23952,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 +23991,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 +24085,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 +24095,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 +24122,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 +24158,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 +24206,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 +24232,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:2199 msgid "Set Level" msgstr "Angi nivå" @@ -24066,8 +24275,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 +24296,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 +24429,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 +24453,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 +24465,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "Konfigurer automatisk e-post" @@ -24290,13 +24499,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 +24514,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 +24574,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 +24623,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 +24675,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 +24795,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 +24937,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 +25060,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 +25235,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 +25274,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 +25329,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 +25368,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 +25376,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 +25444,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 +25617,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 +25655,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 +25769,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 +25783,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 +25804,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:268 #: 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 +25841,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 +25865,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 +25895,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 +25930,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 +25977,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 +26002,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 +26027,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 +26068,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 +26081,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 +26150,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 +26160,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 +26287,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 @@ -26173,6 +26378,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 +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' @@ -26224,7 +26440,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 +26449,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 +26467,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 +26475,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 +26499,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/form/templates/form_sidebar.html:123 #: 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/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 +26593,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 +26691,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 +26747,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 +26763,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 +26789,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 +26864,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 +26885,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 +26905,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 +26917,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 +26994,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 +27002,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:993 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 +27011,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 +27023,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 +27035,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:990 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 +27051,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 +27059,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 +27132,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 +27160,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 +27176,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 +27197,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 +27225,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 +27248,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:2280 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 +27290,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:1069 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 +27306,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:881 msgid "This report was generated {0}." msgstr "Denne rapporten ble generert {0}." @@ -27070,7 +27330,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 +27374,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 +27405,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 +27413,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 +27496,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 +27527,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 +27602,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 +27625,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 +27716,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:882 msgid "To get the updated report, click on {0}." msgstr "For å få den oppdaterte rapporten, klikk på {0}." @@ -27512,31 +27769,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 +27812,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 +27820,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 +27888,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "Totalt" @@ -27662,7 +27906,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 +28008,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 +28044,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:2341 msgid "Translate Data" msgstr "Oversett data" @@ -27811,7 +28055,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 +28091,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 +28140,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 +28187,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 +28201,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 +28210,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 @@ -28140,7 +28386,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 +28402,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 +28423,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:945 msgid "Unfollow" msgstr "Stopp å følge" @@ -28266,9 +28512,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 +28548,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 +28572,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 +28580,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 +28657,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" @@ -28419,7 +28666,7 @@ msgstr "Oppdater {0} poster" #: 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 +28678,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 +28707,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 +28719,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 +28772,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 +28844,7 @@ msgstr "Bruk hvis standardinnstillingene ikke ser ut til å oppdage dataene dine msgid "Use of sub-query or function is restricted" msgstr "Bruk av under­spø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 +28878,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 +28906,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 +29046,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 +29062,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:2027 +#: 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 +29147,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 +29181,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 +29210,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 +29239,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 +29320,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 +29349,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 +29376,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 +29400,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 +29425,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 +29448,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 +29457,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 +29469,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 +29483,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 +29519,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 +29531,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 +29568,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 +29577,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 +29597,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 +29633,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 +29681,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 +29690,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 +29774,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 +29871,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 +29926,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 +29991,11 @@ msgstr "Bilde­lenke 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 +30083,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 +30113,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 +30130,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 +30251,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 +30272,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 +30284,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 +30319,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" @@ -30113,11 +30368,8 @@ 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" @@ -30132,8 +30384,10 @@ msgstr "Oppsett av arbeidsområdet er fullført" 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 "" @@ -30149,7 +30403,7 @@ msgstr "" 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 +30432,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 +30455,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 +30470,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:1272 msgid "Y Field" msgstr "Y-felt" @@ -30263,10 +30518,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 +30534,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30573,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 +30581,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 +30589,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 +30616,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 +30624,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 +30648,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 +30656,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 +30669,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 +30693,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 +30747,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 +30777,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 +30807,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 +30815,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 +30827,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 +30875,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 +30895,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 +30904,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 +30919,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 +30932,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." @@ -30723,7 +30984,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 +31031,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 +31108,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 +31150,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 +31172,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 +31191,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 +31214,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 +31230,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 +31256,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 +31314,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 +31324,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 +31366,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 +31431,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 +31451,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 +31504,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 +31527,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 +31597,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 +31670,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 +31754,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 +31856,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 +31898,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 +31919,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 +31933,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 +31973,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:135 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 +31985,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:984 msgid "{0} Reports" msgstr "{0} Rapporter" @@ -31720,11 +31998,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 +32064,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 +32093,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 +32122,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 +32159,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 +32180,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 +32192,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 +32208,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 +32226,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 +32268,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 +32292,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 +32305,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 +32337,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 +32350,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 +32364,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 +32435,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 +32480,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 +32513,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 +32538,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 +32552,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 +32560,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 +32628,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 +32640,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 +32648,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 +32664,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,7 +32676,7 @@ 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}" @@ -32335,79 +32684,51 @@ msgstr "{0}, Rad {1}" 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 +32736,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 +32801,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:1330 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:222 msgid "{1} saved" msgstr "{1} lagret" @@ -32464,11 +32829,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..9411db4e13 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:49\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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1463,11 @@ 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 "" @@ -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:997 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" @@ -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:132 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:135 +#: frappe/public/js/frappe/form/print_utils.js:148 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 "" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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 "" @@ -5786,6 +5845,14 @@ msgstr "" 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 "" @@ -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 @@ -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,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 "Verwijder" -#: 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" @@ -6830,10 +6898,6 @@ msgstr "Verwijder" 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:964 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 "" @@ -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,11 +7984,11 @@ 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 "" @@ -7915,15 +7996,15 @@ msgstr "" 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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 "" @@ -9249,7 +9342,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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 "" @@ -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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "" @@ -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:1273 #: 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 "" @@ -15071,9 +15230,9 @@ msgstr "" #: 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/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:1136 msgid "Loading" msgstr "" @@ -15090,7 +15249,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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 "" +#. 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:947 #: 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 "" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "" @@ -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 @@ -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 "" @@ -17591,7 +17774,7 @@ 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/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,9 +18698,9 @@ 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:1884 msgid "PDF" msgstr "" @@ -18519,7 +18709,9 @@ 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 "" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20385,11 @@ 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 "" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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 "" @@ -23330,11 +23533,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 +23563,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 +23603,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 +23633,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 +23690,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 +23753,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 +23792,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 +23886,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 +23896,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 +23923,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 +23959,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 +24007,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 +24033,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:2199 msgid "Set Level" msgstr "" @@ -23866,8 +24076,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 +24097,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 +24206,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 +24230,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 +24242,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "" @@ -24066,13 +24276,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 +24291,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 +24351,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 +24400,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 +24452,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 +24572,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 +24714,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 +24804,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 +24837,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 +25012,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 +25051,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 +25106,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 +25145,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 +25153,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 +25221,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 +25394,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 +25432,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 +25546,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 +25560,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 +25581,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:268 #: 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 +25642,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 +25672,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 +25707,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 +25754,7 @@ msgstr "" msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:363 +#: frappe/model/workflow.py:384 msgid "Successful Transactions" msgstr "" @@ -25572,7 +25779,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 +25804,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 +25823,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 +25845,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 +25858,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 +25927,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 +25937,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 +26064,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 @@ -25949,6 +26155,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 +26176,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 +26217,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 +26226,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 +26244,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 +26252,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 +26276,17 @@ msgid "Tag Link" msgstr "" #: frappe/model/meta.py:59 -#: frappe/public/js/frappe/form/templates/form_sidebar.html:102 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:123 #: 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/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 +26343,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 +26370,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 +26466,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 +26518,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 +26674,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 +26686,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 +26763,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 +26771,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -26519,7 +26780,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 +26792,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 +26804,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26559,7 +26820,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 +26828,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 +26901,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 +26929,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 +26945,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 +26966,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 +26991,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 +27014,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26795,15 +27056,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:1069 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26811,7 +27072,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:881 msgid "This report was generated {0}." msgstr "" @@ -26835,7 +27096,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 +27140,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 +27171,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 +27179,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 +27262,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 +27293,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 +27368,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 +27391,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 +27477,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:882 msgid "To get the updated report, click on {0}." msgstr "" @@ -27272,31 +27530,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 +27573,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 +27581,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 +27649,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "Totaal" @@ -27422,7 +27667,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 +27767,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 +27803,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2274 +#: frappe/public/js/frappe/views/reports/query_report.js:2341 msgid "Translate Data" msgstr "" @@ -27569,7 +27814,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 +27850,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 +27899,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 +27946,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 +27960,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 +27969,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 @@ -27897,7 +28144,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 +28160,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 +28181,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:945 msgid "Unfollow" msgstr "" @@ -28021,9 +28268,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 +28304,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 +28328,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 +28336,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 +28413,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,7 +28422,7 @@ msgstr "" #: 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 +28434,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 +28463,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 +28475,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 +28528,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 +28600,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 +28634,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 +28662,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 +28802,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 +28818,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:2027 +#: 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 +28903,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 +28937,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 +28966,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 +28993,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 +29076,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 +29105,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 +29132,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 +29156,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 +29181,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 +29204,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 +29213,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 +29225,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 +29239,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 +29275,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 +29287,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 +29324,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 +29333,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 +29353,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 +29389,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 +29437,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 +29446,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 +29523,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 +29627,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 +29682,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 +29747,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 +29839,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 +29869,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 +29886,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 +30007,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 +30028,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 +30040,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 +30075,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 "" @@ -29868,11 +30124,8 @@ 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 "" @@ -29887,8 +30140,10 @@ msgstr "" 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 "" @@ -29904,7 +30159,7 @@ msgstr "" 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 +30188,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 +30211,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 +30226,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:1272 msgid "Y Field" msgstr "" @@ -30018,10 +30274,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 +30290,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30329,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 +30337,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 +30345,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 +30372,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 +30380,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 +30402,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 +30412,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 +30425,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 +30449,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 +30503,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 +30533,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 +30563,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 +30571,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 +30583,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 +30631,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 +30651,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 +30660,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 +30675,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 +30688,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 "" @@ -30478,7 +30740,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 +30787,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 +30864,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 +30906,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 +30928,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 +30947,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 +30970,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 +30986,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 +31012,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 +31070,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 +31080,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 +31122,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 +31187,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 +31207,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 +31260,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 +31283,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 +31353,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 +31426,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 +31510,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 +31612,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 +31654,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 +31675,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 +31689,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 +31729,11 @@ msgstr "" msgid "{0} Map" msgstr "" -#: frappe/public/js/frappe/form/quick_entry.js:122 +#: frappe/public/js/frappe/form/quick_entry.js:135 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 +31741,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:984 msgid "{0} Reports" msgstr "" @@ -31475,11 +31754,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 +31820,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 +31849,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 +31878,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 +31915,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 +31936,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 +31948,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 +31964,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 +31982,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 +32024,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 +32048,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 +32061,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 +32093,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 +32106,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 +32120,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 +32191,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 +32236,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 +32269,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 +32294,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 +32308,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 +32316,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 +32384,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 +32396,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 +32404,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 +32420,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,7 +32432,7 @@ 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 "" @@ -32090,79 +32440,51 @@ msgstr "" 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 +32492,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 +32557,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:1330 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:222 msgid "{1} saved" msgstr "" @@ -32219,11 +32585,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..9e6a6e07c9 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:49\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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1477,11 @@ 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 "" @@ -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:997 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 @@ -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:132 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:135 +#: frappe/public/js/frappe/form/print_utils.js:148 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 "" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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 "" @@ -5812,6 +5860,14 @@ msgstr "" 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 @@ -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,22 +6135,22 @@ 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 msgid "Custom Reports" @@ -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:964 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' @@ -7706,7 +7776,7 @@ 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,11 +7999,11 @@ 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 "" @@ -7941,15 +8011,15 @@ msgstr "" 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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 "" @@ -9275,7 +9357,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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 "" @@ -10574,12 +10683,12 @@ 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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "" @@ -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:1273 #: 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,14 +15217,14 @@ 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/web_form/web_form_list.js:306 @@ -15097,9 +15245,9 @@ msgstr "Załaduj więcej" #: 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/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:1136 msgid "Loading" msgstr "" @@ -15116,7 +15264,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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 "" +#. 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:947 #: 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 "" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "" @@ -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 @@ -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" @@ -17617,7 +17789,7 @@ 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/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,9 +18713,9 @@ 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:1884 msgid "PDF" msgstr "" @@ -18545,7 +18724,9 @@ 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,7 +18748,7 @@ 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 msgid "PDF generation failed" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,13 +20398,13 @@ 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 "" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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" @@ -23356,11 +23548,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 +23568,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 +23578,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 +23604,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 +23618,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 +23641,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 +23678,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 +23703,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 +23713,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 +23739,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 +23762,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 +23807,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 +23860,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 +23870,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 +23891,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 +23901,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 +23909,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 +23919,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 +23938,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 +23974,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 +24020,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 +24048,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:2199 msgid "Set Level" msgstr "" @@ -23866,7 +24065,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 +24089,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 +24100,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 +24110,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 +24148,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 +24221,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 +24231,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 +24245,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 +24257,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "" @@ -24092,13 +24291,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 +24306,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 +24322,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 +24331,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 +24366,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 +24415,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 +24428,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 +24467,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 +24479,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 +24497,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 +24545,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 +24587,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 +24598,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 +24615,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 +24631,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 +24657,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 +24667,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 +24706,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 +24729,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 +24756,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 +24787,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 +24829,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 +24852,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 +24868,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 +24890,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 +24927,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 +24954,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 +24967,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 +24989,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 +25027,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 +25050,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 +25064,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 +25121,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 +25160,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 +25168,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 +25212,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 +25236,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 +25255,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 +25290,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 +25304,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 +25328,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 +25337,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 +25359,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 +25409,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 +25432,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 +25447,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 +25484,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 +25511,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 +25561,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 +25573,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 +25596,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:268 #: 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 +25631,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 +25657,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 +25687,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 +25722,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 +25742,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 +25769,7 @@ msgstr "" msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:363 +#: frappe/model/workflow.py:384 msgid "Successful Transactions" msgstr "" @@ -25598,7 +25794,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 +25819,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 +25860,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 +25873,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 +25887,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 +25913,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 +25942,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 +25952,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 +26079,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 @@ -25963,23 +26158,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 +26191,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 +26232,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 +26241,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 +26257,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 +26267,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 +26291,17 @@ msgid "Tag Link" msgstr "" #: frappe/model/meta.py:59 -#: frappe/public/js/frappe/form/templates/form_sidebar.html:102 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:123 #: 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/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 +26374,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 +26419,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 +26445,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 +26481,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 +26533,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 +26689,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 +26701,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 +26744,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 +26757,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 +26767,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 +26786,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -26545,7 +26795,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 +26807,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 +26819,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26585,7 +26835,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 +26843,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 +26872,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 +26882,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 +26916,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 +26933,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 +26960,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 +26981,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 +27006,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 +27029,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26811,7 +27061,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 +27071,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:1069 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26837,7 +27087,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:881 msgid "This report was generated {0}." msgstr "" @@ -26861,7 +27111,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 +27129,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 +27155,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 +27186,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 +27194,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 +27204,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 +27214,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 +27246,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 +27262,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 +27277,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 +27294,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 +27329,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 +27383,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 +27399,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 +27464,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 +27492,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:882 msgid "To get the updated report, click on {0}." msgstr "" @@ -27298,35 +27545,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 +27588,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 +27596,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 +27662,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "" @@ -27448,7 +27682,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 +27695,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 +27740,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 +27767,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 +27782,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 +27797,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 +27807,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 +27816,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:2341 msgid "Translate Data" msgstr "" @@ -27595,7 +27829,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 +27840,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 +27859,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 +27876,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 +27885,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 +27898,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 +27914,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 +27949,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 +27975,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 +27984,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 +28046,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 +28078,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 +28129,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 @@ -27923,7 +28159,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 +28175,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 +28190,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:945 msgid "Unfollow" msgstr "" @@ -27994,7 +28230,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 +28271,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 +28302,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 +28319,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 +28343,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 +28351,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 +28370,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 +28406,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 +28422,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 "" @@ -28200,7 +28437,7 @@ msgstr "" #: 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 +28449,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 +28478,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 +28490,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 +28516,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 +28533,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 +28543,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 +28552,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 +28563,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 +28577,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 +28591,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 +28615,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 +28649,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 +28677,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 +28722,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 +28736,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 +28765,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 +28786,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 +28810,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 +28833,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:2027 +#: 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 +28889,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 +28910,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 +28952,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 +28981,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 +29010,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 +29058,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 +29072,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 +29091,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 +29120,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 +29130,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 +29140,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 +29171,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 +29179,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 +29194,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 +29219,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 +29228,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 +29240,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 +29251,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 +29278,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 +29290,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 +29302,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 +29324,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 +29337,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 +29348,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 +29368,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 +29382,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 +29404,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 +29420,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 +29452,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 +29461,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 +29528,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 +29545,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 +29569,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 +29605,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 +29622,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 +29697,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 +29762,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 +29801,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 +29830,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 +29842,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 +29854,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 +29870,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 +29884,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 +29901,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 +29913,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 +29976,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 +29987,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 +30022,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 +30041,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 +30055,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 +30090,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 "" @@ -29894,11 +30139,8 @@ 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" @@ -29913,8 +30155,10 @@ msgstr "Zakończono konfigurację obszaru roboczego" 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 "" @@ -29930,7 +30174,7 @@ msgstr "" 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 +30203,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 +30226,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 +30241,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:1272 msgid "Y Field" msgstr "" @@ -30044,10 +30289,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 +30305,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30344,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 +30352,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 +30360,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 +30387,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 +30395,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 +30419,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 +30427,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 +30440,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 +30464,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 +30518,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 +30548,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 +30578,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 +30586,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 +30598,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 +30646,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 +30666,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 +30675,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 +30690,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 +30703,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 "" @@ -30504,7 +30755,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 +30802,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 +30879,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 +30907,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 +30921,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 +30937,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 +30954,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 +30962,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 +30974,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 +30985,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 +31001,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 +31027,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 +31035,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 +31046,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 +31085,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 +31093,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 +31104,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 +31137,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 +31175,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 +31202,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 +31222,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 +31275,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 +31289,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 +31368,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 +31403,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 +31419,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 +31434,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 +31467,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 +31525,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 +31561,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 +31627,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 +31651,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 +31662,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 +31690,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 +31704,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 +31744,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:135 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 +31756,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:984 msgid "{0} Reports" msgstr "" @@ -31501,11 +31769,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 +31835,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 +31864,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 +31893,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 +31930,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 +31951,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 +31963,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 +31979,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 +31997,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 +32039,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 +32063,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 +32076,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 +32108,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 +32121,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 +32135,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 +32206,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 +32251,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 +32284,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 +32309,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 +32323,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 +32331,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 +32399,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 +32411,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 +32419,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 +32435,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,7 +32447,7 @@ 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 "" @@ -32116,79 +32455,51 @@ msgstr "" 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 +32507,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 +32572,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:1330 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:222 msgid "{1} saved" msgstr "" @@ -32245,11 +32600,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..2f6d192015 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:49\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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1465,11 @@ 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 "" @@ -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:997 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 "" @@ -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:132 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:135 +#: frappe/public/js/frappe/form/print_utils.js:148 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 "" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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 "" @@ -5789,6 +5848,14 @@ msgstr "" 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 "" @@ -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 "" @@ -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:964 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 "" @@ -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,11 +7987,11 @@ 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 "" @@ -7918,15 +7999,15 @@ msgstr "" 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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 "" @@ -9252,7 +9345,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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 "" @@ -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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "" @@ -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:1273 #: 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 "" @@ -15074,9 +15233,9 @@ msgstr "" #: 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/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:1136 msgid "Loading" msgstr "" @@ -15093,7 +15252,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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 "" +#. 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:947 #: 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 "" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "" @@ -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 @@ -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 "" @@ -17594,7 +17777,7 @@ 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/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,9 +18701,9 @@ 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:1884 msgid "PDF" msgstr "" @@ -18522,7 +18712,9 @@ 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 "" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20388,11 @@ 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 "" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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 "" @@ -23333,11 +23536,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 +23566,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 +23606,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 +23636,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 +23693,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 +23756,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 +23795,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 +23889,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 +23899,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 +23926,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 +23962,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 +24010,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 +24036,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:2199 msgid "Set Level" msgstr "" @@ -23869,8 +24079,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 +24100,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 +24209,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 +24233,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 +24245,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "" @@ -24069,13 +24279,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 +24294,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 +24354,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 +24403,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 +24455,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 +24575,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 +24717,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 +24840,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 +25015,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 +25054,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 +25109,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 +25148,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 +25156,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 +25224,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 +25397,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 +25435,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 +25549,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 +25563,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 +25584,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:268 #: 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 +25621,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 +25645,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 +25675,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 +25710,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 +25757,7 @@ msgstr "" msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:363 +#: frappe/model/workflow.py:384 msgid "Successful Transactions" msgstr "" @@ -25575,7 +25782,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 +25807,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 +25848,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 +25861,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 +25930,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 +25940,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 +26067,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 @@ -25952,6 +26158,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 +26179,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 +26220,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 +26229,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 +26247,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 +26255,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 +26279,17 @@ msgid "Tag Link" msgstr "" #: frappe/model/meta.py:59 -#: frappe/public/js/frappe/form/templates/form_sidebar.html:102 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:123 #: 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/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 +26373,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 +26469,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 +26521,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 +26677,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 +26689,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 +26766,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 +26774,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -26522,7 +26783,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 +26795,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 +26807,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26562,7 +26823,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 +26831,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 +26904,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 +26932,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 +26948,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 +26969,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 +26994,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 +27017,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26798,15 +27059,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:1069 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26814,7 +27075,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:881 msgid "This report was generated {0}." msgstr "" @@ -26838,7 +27099,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 +27143,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 +27174,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 +27182,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 +27265,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 +27296,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 +27371,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 +27394,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 +27480,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:882 msgid "To get the updated report, click on {0}." msgstr "" @@ -27275,31 +27533,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 +27576,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 +27584,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 +27652,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "" @@ -27425,7 +27670,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 +27770,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 +27806,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2274 +#: frappe/public/js/frappe/views/reports/query_report.js:2341 msgid "Translate Data" msgstr "" @@ -27572,7 +27817,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 +27853,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 +27902,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 +27949,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 +27963,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 +27972,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 @@ -27900,7 +28147,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 +28163,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 +28184,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:945 msgid "Unfollow" msgstr "" @@ -28024,9 +28271,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 +28307,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 +28331,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 +28339,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 +28416,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 "" @@ -28177,7 +28425,7 @@ msgstr "" #: 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 +28437,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 +28466,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 +28478,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 +28531,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 +28603,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 +28637,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 +28665,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 +28805,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 +28821,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:2027 +#: 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 +28906,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 +28940,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 +28969,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 +28998,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 +29079,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 +29108,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 +29135,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 +29159,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 +29184,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 +29207,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 +29216,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 +29228,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 +29242,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 +29278,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 +29290,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 +29327,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 +29336,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 +29356,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 +29392,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 +29440,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 +29449,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 +29533,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 +29630,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 +29685,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 +29750,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 +29842,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 +29872,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 +29889,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 +30010,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 +30031,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 +30043,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 +30078,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 "" @@ -29871,11 +30127,8 @@ 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 "" @@ -29890,8 +30143,10 @@ msgstr "" 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 "" @@ -29907,7 +30162,7 @@ msgstr "" 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 +30191,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 +30214,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 +30229,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:1272 msgid "Y Field" msgstr "" @@ -30021,10 +30277,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 +30293,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30332,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 +30340,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 +30348,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 +30375,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 +30383,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 +30407,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 +30415,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 +30428,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 +30452,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 +30506,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 +30536,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 +30566,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 +30574,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 +30586,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 +30634,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 +30654,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 +30663,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 +30678,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 +30691,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 "" @@ -30481,7 +30743,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 +30790,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 +30867,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 +30909,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 +30931,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 +30950,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 +30973,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 +30989,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 +31015,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 +31073,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 +31083,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 +31125,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 +31190,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 +31210,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 +31263,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 +31286,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 +31356,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 +31429,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 +31513,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 +31615,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 +31657,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 +31678,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 +31692,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 +31732,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:135 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 +31744,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:984 msgid "{0} Reports" msgstr "" @@ -31478,11 +31757,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 +31823,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 +31852,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 +31881,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 +31918,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 +31939,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 +31951,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 +31967,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 +31985,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 +32027,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 +32051,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 +32064,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 +32096,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 +32109,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 +32123,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 +32194,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 +32239,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 +32272,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 +32297,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 +32311,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 +32319,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 +32387,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 +32399,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 +32407,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 +32423,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,7 +32435,7 @@ msgstr "{0} {1} não foi encontrado" msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: O registo submetido não pode ser eliminado. Tem de {2} Cancelar {3} primeiro." -#: frappe/model/base_document.py:1220 +#: frappe/model/base_document.py:1237 msgid "{0}, Row {1}" msgstr "" @@ -32093,79 +32443,51 @@ msgstr "" 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 +32495,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 +32560,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:1330 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:222 msgid "{1} saved" msgstr "" @@ -32222,11 +32588,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..792426175f 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:50\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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1463,11 @@ 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 "" @@ -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:997 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,7 +2607,7 @@ 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/public/js/frappe/list/list_sidebar_group_by.js:37 @@ -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:132 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:135 +#: frappe/public/js/frappe/form/print_utils.js:148 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 "" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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 "" @@ -5786,6 +5845,14 @@ msgstr "" 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 @@ -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,17 +6125,17 @@ 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 msgid "Custom Reports" @@ -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:964 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' @@ -7680,7 +7761,7 @@ 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,11 +7984,11 @@ 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 "" @@ -7915,15 +7996,15 @@ msgstr "" 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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 "" @@ -9249,7 +9342,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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 "" @@ -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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "" @@ -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:1273 #: 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,14 +15202,14 @@ 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/web_form/web_form_list.js:306 @@ -15071,9 +15230,9 @@ msgstr "" #: 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/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:1136 msgid "Loading" msgstr "" @@ -15090,7 +15249,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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 "" +#. 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:947 #: 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 "" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "" @@ -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 @@ -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 "" @@ -17591,7 +17774,7 @@ 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/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,9 +18698,9 @@ 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:1884 msgid "PDF" msgstr "" @@ -18519,7 +18709,9 @@ 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,7 +18733,7 @@ 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 msgid "PDF generation failed" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,13 +20383,13 @@ 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 "" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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" @@ -23330,11 +23533,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 +23563,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 +23589,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 +23603,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 +23626,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 +23669,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 +23688,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 +23698,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 +23713,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 +23724,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 +23735,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 +23753,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 +23792,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 +23845,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 +23855,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 +23865,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 +23876,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 +23886,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 +23894,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 +23904,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 +23923,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 +23959,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 +24007,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 +24033,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:2199 msgid "Set Level" msgstr "" @@ -23840,7 +24050,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 +24074,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 +24085,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 +24095,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 +24206,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 +24216,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 +24230,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 +24242,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "" @@ -24066,13 +24276,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 +24291,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 +24307,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 +24316,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 +24351,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 +24400,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 +24419,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 +24450,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 +24464,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 +24509,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 +24530,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 +24572,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 +24600,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 +24616,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 +24642,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 +24691,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 +24714,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 +24741,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 +24772,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 +24814,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 +24837,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 +24853,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 +24912,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 +24952,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 +25012,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 +25035,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 +25049,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 +25106,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 +25145,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 +25153,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 +25221,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 +25240,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 +25275,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 +25289,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 +25313,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 +25322,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 +25344,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 +25394,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 +25417,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 +25432,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 +25469,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 +25496,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 +25511,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 +25522,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 +25546,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 +25560,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 +25581,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:268 #: 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 +25616,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 +25642,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 +25672,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 +25707,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 +25727,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 +25737,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 +25754,7 @@ msgstr "" msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:363 +#: frappe/model/workflow.py:384 msgid "Successful Transactions" msgstr "" @@ -25572,7 +25779,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 +25804,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 +25845,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 +25858,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 +25898,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 +25927,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 +25937,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 +26064,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 @@ -25937,23 +26143,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 +26176,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 +26215,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 +26226,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 +26244,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 +26252,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 +26276,17 @@ msgid "Tag Link" msgstr "" #: frappe/model/meta.py:59 -#: frappe/public/js/frappe/form/templates/form_sidebar.html:102 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:123 #: 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/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 +26320,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 +26359,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 +26404,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 +26430,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 +26466,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 +26518,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 +26674,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 +26686,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 +26742,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 +26752,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 +26771,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -26519,7 +26780,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 +26792,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 +26804,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26559,7 +26820,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 +26828,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 +26857,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 +26867,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 +26901,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 +26918,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 +26945,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 +26966,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 +26991,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 +27014,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26785,7 +27046,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 +27056,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:1069 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26811,7 +27072,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:881 msgid "This report was generated {0}." msgstr "" @@ -26835,7 +27096,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 +27114,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 +27140,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 +27171,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 +27179,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 +27189,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 +27199,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 +27231,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 +27247,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 +27262,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 +27286,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 +27368,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 +27384,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 +27420,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 +27449,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 +27477,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:882 msgid "To get the updated report, click on {0}." msgstr "" @@ -27272,35 +27530,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 +27573,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 +27581,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 +27601,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 +27615,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 +27647,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "" @@ -27422,7 +27667,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 +27680,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 +27725,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 +27735,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 +27752,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 +27767,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 +27782,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 +27792,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 +27801,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:2341 msgid "Translate Data" msgstr "" @@ -27569,7 +27814,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 +27825,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 +27850,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 +27861,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 +27870,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 +27899,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 +27934,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 +27960,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 +27969,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 +28031,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 +28063,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://" @@ -27897,7 +28144,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 +28160,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 +28175,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:945 msgid "Unfollow" msgstr "" @@ -27968,7 +28215,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 +28256,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 +28287,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 +28304,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 +28328,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 +28336,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 +28355,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 +28391,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 +28407,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 "" @@ -28174,7 +28422,7 @@ msgstr "" #: 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 +28434,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 +28463,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 +28475,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 +28501,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 +28518,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 +28528,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 +28537,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 +28553,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 +28562,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 +28576,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 +28600,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 +28634,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 +28662,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 +28702,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 +28721,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 +28771,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 +28795,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 +28810,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 +28818,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:2027 +#: 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 +28874,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 +28903,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 +28923,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 +28937,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 +28966,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 +28995,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 +29043,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 +29057,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 +29076,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 +29105,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 +29115,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 +29125,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 +29156,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 +29179,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 +29204,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 +29213,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 +29225,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 +29236,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 +29263,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 +29275,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 +29287,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 +29309,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 +29322,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 +29333,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 +29353,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 +29367,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 +29389,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 +29405,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 +29437,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 +29446,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 +29513,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 +29530,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 +29627,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 +29682,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 +29734,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 +29747,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 +29786,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 +29815,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 +29839,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 +29869,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 +29886,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 +29961,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 +29972,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 +30007,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 +30028,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 +30040,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 +30075,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 "" @@ -29868,11 +30124,8 @@ 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 "" @@ -29887,8 +30140,10 @@ msgstr "" 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 "" @@ -29904,7 +30159,7 @@ msgstr "" 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 +30188,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 +30204,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 +30226,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:1272 msgid "Y Field" msgstr "" @@ -30018,10 +30274,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 +30290,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30329,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 +30337,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 +30345,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 +30372,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 +30380,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 +30404,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 +30412,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 +30425,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 +30449,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 +30503,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 +30533,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 +30563,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 +30571,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 +30583,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 +30631,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 +30651,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 +30660,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 +30675,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 +30688,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 "" @@ -30478,7 +30740,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 +30787,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 +30864,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 +30906,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 +30922,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 +30947,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 +30959,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 +30970,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 +30986,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 +31012,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 +31045,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 +31070,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 +31080,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 +31089,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 +31102,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 +31122,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 +31175,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 +31187,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 +31207,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 +31260,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 +31281,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 +31331,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 +31353,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 +31361,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 +31378,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 +31388,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 +31404,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 +31419,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 +31452,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 +31510,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 +31612,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 +31636,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 +31647,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 +31675,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 +31689,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 +31729,11 @@ msgstr "" msgid "{0} Map" msgstr "" -#: frappe/public/js/frappe/form/quick_entry.js:122 +#: frappe/public/js/frappe/form/quick_entry.js:135 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 +31741,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:984 msgid "{0} Reports" msgstr "" @@ -31475,11 +31754,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 +31820,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 +31849,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 +31878,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 +31915,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 +31936,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 +31948,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 +31964,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 +31982,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 +32024,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 +32048,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 +32061,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 +32093,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 +32106,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 +32120,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 +32191,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 +32236,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 +32269,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 +32294,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 +32308,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 +32316,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 +32384,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 +32396,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 +32404,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 +32420,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,7 +32432,7 @@ 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 "" @@ -32090,79 +32440,51 @@ msgstr "" 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 +32492,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 +32557,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:1330 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:222 msgid "{1} saved" msgstr "" @@ -32219,11 +32585,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..eb107599b5 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13: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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1660,11 @@ 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}." @@ -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:997 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,7 +2805,7 @@ 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/public/js/frappe/list/list_sidebar_group_by.js:37 @@ -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:132 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:148 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" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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,7 +6036,7 @@ 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/public/js/frappe/list/list_sidebar_group_by.js:39 @@ -5988,6 +6045,14 @@ msgstr "Создано в" 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,7 +6240,7 @@ 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" @@ -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" @@ -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:964 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})" @@ -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,24 +8174,24 @@ 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 "Документ не может быть использован в качестве значения фильтра." @@ -8120,15 +8199,15 @@ msgstr "Документ не может быть использован в ка 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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 "Ошибка" @@ -9455,7 +9545,7 @@ msgstr "Журналы ошибок" msgid "Error Message" msgstr "Сообщение об ошибке" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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 "Читают" @@ -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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 msgid "Include filters" msgstr "Включая фильтры" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "Включите скрытые колонки" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "Неверное имя поля таблицы" @@ -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:1273 #: 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,14 +15405,14 @@ 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/web_form/web_form_list.js:306 @@ -15278,9 +15433,9 @@ msgstr "Загрузить ещё" #: 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/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:1136 msgid "Loading" msgstr "Загрузка" @@ -15297,7 +15452,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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}" +#. 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:947 #: 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 "Отсутствует поле" @@ -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" "
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" "
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" -msgstr "Параметры именования:\n" -"
  1. field:[fieldname] - По полю
  2. naming_series: - По серии именования (поле naming_series должно присутствовать)
  3. Запрос - Запрос имени у пользователя
  4. [series] — Серия по префиксу (разделённая точкой); например, PRE.#####
  5. \n" -"
  6. Формат:ПРИМЕР-{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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "Никаких изменений не было сделано" @@ -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 @@ -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 "Ничего нового" @@ -17802,7 +17979,7 @@ 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/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,9 +18903,9 @@ 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:1884 msgid "PDF" msgstr "PDF" @@ -18730,29 +18914,31 @@ 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 msgid "PDF generation failed" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,13 +20588,13 @@ 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 "Сопоставление принтеров не установлено." @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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,7 +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 "Выберите рабочую область" +msgstr "" #. Label of the select_workspaces_section (Section Break) field in DocType #. 'Workspace Settings' @@ -23541,11 +23738,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 +23758,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 +23768,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 +23794,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 +23808,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 +23831,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 +23857,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 +23868,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 +23893,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 +23903,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 +23918,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 +23929,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 +23952,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 +23995,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 +24050,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 +24060,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 +24081,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 +24091,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 +24099,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 +24109,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 +24128,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 +24164,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 +24182,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 +24210,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 +24238,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:2199 msgid "Set Level" msgstr "Установить уровень" @@ -24046,12 +24250,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 +24279,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 +24290,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 +24300,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 +24324,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 +24338,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 +24348,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 +24405,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 +24428,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 +24438,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 +24452,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 +24464,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "Настройка автоматической электронной почты" @@ -24286,7 +24483,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 +24498,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 +24513,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 +24529,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 +24538,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 +24571,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 +24595,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 +24622,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 +24667,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 +24704,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 +24731,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 +24752,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 +24760,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 +24792,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 +24805,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 +24816,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 +24838,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 +24864,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 +24874,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 +24896,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 +24913,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 +24934,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 +24948,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 +24963,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 +24994,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 +26760,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 +26784,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 +26845,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 +26882,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 +26902,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 +26914,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 +26957,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 +26970,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 +26980,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 +26999,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "В очереди уже есть {0} с теми же фильтрами:" @@ -26762,7 +27008,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 +27020,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 +27032,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "В очереди уже есть {0} с теми же фильтрами:" @@ -26802,7 +27048,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 +27056,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 +27068,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 +27080,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 +27095,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 +27129,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 +27146,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 +27173,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 +27195,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 +27206,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 +27220,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 +27241,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Это фоновый отчет. Пожалуйста, установите соответствующие фильтры, а затем сгенерируйте новый." @@ -27032,7 +27275,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 +27285,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:1069 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 +27301,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:881 msgid "This report was generated {0}." msgstr "Этот отчет был создан на сайте {0}." @@ -27082,7 +27325,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 +27343,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 +27369,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 +27400,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 +27408,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 +27418,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 +27428,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 +27460,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 +27489,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 +27498,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 +27543,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 +27597,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 +27613,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 +27649,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 +27659,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 +27668,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 +27678,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 +27706,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:882 msgid "To get the updated report, click on {0}." msgstr "Чтобы получить обновленный отчет, перейдите по ссылке {0}." @@ -27505,7 +27740,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 +27759,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 +27786,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 +27802,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 +27810,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 +27830,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 +27844,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 +27852,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 +27863,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 +27871,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "Общая сумма" @@ -27674,7 +27896,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 +27909,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 +27919,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 +27942,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 +27954,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 +27998,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 +28013,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 +28023,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 +28032,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:2341 msgid "Translate Data" msgstr "Перевести данные" @@ -27821,9 +28043,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 +28056,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 +28075,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 +28092,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 +28101,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 +28114,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 +28128,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 +28165,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 +28191,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 +28200,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 +28234,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 +28295,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 +28346,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 @@ -28152,7 +28376,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 +28392,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 +28407,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:945 msgid "Unfollow" msgstr "Отписаться" @@ -28223,7 +28447,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 +28490,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 +28521,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 +28538,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 +28562,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 +28570,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 +28584,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 +28619,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 +28641,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}" @@ -28431,7 +28656,7 @@ msgstr "Обновление записей {0}" #: 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 +28668,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 +28697,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 +28709,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 +28735,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 +28782,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 +28796,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 +28823,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 +28834,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 +28852,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 +28868,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 +28896,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 +28936,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 +28955,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 +28984,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 +29000,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 +29029,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 +29044,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 +29052,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:2027 +#: 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 +29077,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 +29108,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 +29129,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 +29157,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 +29171,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 +29200,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 +29219,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 +29229,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 +29271,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 +29291,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 +29310,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 +29339,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 +29349,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 +29359,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 +29390,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 +29398,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 +29413,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 +29438,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 +29447,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 +29459,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 +29470,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 +29497,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 +29509,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 +29521,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 +29543,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 +29556,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 +29587,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 +29601,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 +29613,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 +29623,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 +29639,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 +29652,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 +29671,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 +29680,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 +29691,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 +29747,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 +29764,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 +29788,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 +29797,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 +29824,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 +29841,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 +29914,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 +29968,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 +30020,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 +30049,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 +30061,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 +30089,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 +30120,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 +30132,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 +30162,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 +30195,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 +30206,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 +30221,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 +30230,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 +30241,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 +30260,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 +30274,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 +30309,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 "Рабочее пространство" @@ -30125,11 +30358,8 @@ 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 "Настройки рабочего пространства" @@ -30144,8 +30374,10 @@ msgstr "Настройка рабочего пространства завер 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 "Боковая панель рабочего пространства" @@ -30161,14 +30393,14 @@ msgstr "Элемент боковой панели рабочего простр 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 +30422,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 +30445,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 +30460,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:1272 msgid "Y Field" msgstr "Y-поле" @@ -30239,7 +30472,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 +30508,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 +30524,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30563,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 +30571,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 +30579,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 +30606,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 +30614,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 +30638,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 +30646,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 +30659,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 +30683,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 +30737,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 +30767,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 +30797,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 +30805,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 +30817,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 +30865,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 +30885,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 +30894,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 +30909,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 +30922,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 "Вы должны войти в систему, чтобы получить доступ к этой странице." @@ -30735,7 +30974,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 +31021,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 +31098,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 +31140,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 +31156,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 +31173,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 +31193,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 +31204,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 +31212,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 +31238,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 +31254,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 +31265,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 +31314,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 +31356,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 +31421,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 +31441,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 +31491,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 +31517,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 +31587,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 +31633,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 +31648,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 +31674,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 +31714,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 +31724,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 +31797,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 +31815,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 +31846,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 +31888,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 +31909,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 +31923,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 +31963,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:135 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 +31975,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:984 msgid "{0} Reports" msgstr "{0} Отчеты" @@ -31732,11 +31988,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 +32054,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 +32083,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 +32112,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 +32149,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 +32170,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 +32182,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 +32198,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 +32216,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 +32258,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 +32282,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 +32295,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 +32327,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 +32340,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 +32354,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 +32425,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 +32470,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 +32503,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 +32528,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 +32542,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 +32550,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 +32618,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 +32630,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 +32638,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 +32654,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,7 +32666,7 @@ msgstr "{0} {1} не найдено" msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Отправленная запись не может быть удалена. Сначала необходимо {2} Отменить {3}." -#: frappe/model/base_document.py:1220 +#: frappe/model/base_document.py:1237 msgid "{0}, Row {1}" msgstr "{0}, Строка {1}" @@ -32347,79 +32674,51 @@ msgstr "{0}, Строка {1}" 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 +32726,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 +32791,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:1330 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:222 msgid "{1} saved" msgstr "{1} сохранено" @@ -32476,11 +32819,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..5c5421ebd2 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13: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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1651,11 @@ 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}." @@ -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:997 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" @@ -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:132 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:135 +#: frappe/public/js/frappe/form/print_utils.js:148 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 "" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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 "" @@ -5974,6 +6033,14 @@ msgstr "" 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 "" @@ -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 "" @@ -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:964 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 "" @@ -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,11 +8172,11 @@ 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 "" @@ -8103,15 +8184,15 @@ msgstr "" 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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 "" @@ -9437,7 +9530,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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 "" @@ -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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "" @@ -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:1273 #: 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 "" @@ -15259,9 +15418,9 @@ msgstr "" #: 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/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:1136 msgid "Loading" msgstr "" @@ -15278,7 +15437,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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 "" +#. 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:947 #: 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 "" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "" @@ -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 @@ -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 "" @@ -17779,7 +17962,7 @@ 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/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,9 +18886,9 @@ 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:1884 msgid "PDF" msgstr "" @@ -18707,7 +18897,9 @@ 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 "" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20573,11 @@ 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 "" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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 "" @@ -23518,11 +23721,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 +23751,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 +23791,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 +23821,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 +23878,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 +23941,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 +23980,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 +24074,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 +24084,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 +24111,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 +24147,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 +24195,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 +24221,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:2199 msgid "Set Level" msgstr "" @@ -24054,8 +24264,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 +24285,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 +24394,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 +24418,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 +24430,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "" @@ -24254,13 +24464,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 +24479,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 +24539,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 +24588,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 +24640,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 +24760,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 +24902,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 +25025,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 +25200,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 +25239,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 +25294,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 +25333,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 +25341,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 +25409,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 +25582,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 +25620,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 +25734,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 +25748,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 +25769,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:268 #: 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 +25806,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 +25830,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 +25860,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 +25895,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 +25942,7 @@ msgstr "" msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:363 +#: frappe/model/workflow.py:384 msgid "Successful Transactions" msgstr "" @@ -25760,7 +25967,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 +25992,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 +26033,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 +26046,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 +26115,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 +26125,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 +26252,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 @@ -26137,6 +26343,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 +26364,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 +26405,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 +26414,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 +26432,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 +26440,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 +26464,17 @@ msgid "Tag Link" msgstr "" #: frappe/model/meta.py:59 -#: frappe/public/js/frappe/form/templates/form_sidebar.html:102 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:123 #: 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/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 +26558,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 +26654,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 +26706,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 +26862,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 +26874,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 +26951,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 +26959,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -26707,7 +26968,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 +26980,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 +26992,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26747,7 +27008,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 +27016,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 +27089,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 +27117,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 +27133,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 +27154,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 +27179,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 +27202,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26983,15 +27244,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:1069 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26999,7 +27260,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:881 msgid "This report was generated {0}." msgstr "" @@ -27023,7 +27284,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 +27328,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 +27359,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 +27367,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 +27450,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 +27481,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 +27556,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 +27579,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 +27665,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:882 msgid "To get the updated report, click on {0}." msgstr "" @@ -27460,31 +27718,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 +27761,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 +27769,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 +27837,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "" @@ -27610,7 +27855,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 +27955,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 +27991,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2274 +#: frappe/public/js/frappe/views/reports/query_report.js:2341 msgid "Translate Data" msgstr "" @@ -27757,7 +28002,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 +28038,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 +28087,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 +28134,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 +28148,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 +28157,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 @@ -28085,7 +28332,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 +28348,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 +28369,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:945 msgid "Unfollow" msgstr "" @@ -28209,9 +28456,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 +28492,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 +28516,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 +28524,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 +28601,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 "" @@ -28362,7 +28610,7 @@ msgstr "" #: 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 +28622,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 +28651,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 +28663,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 +28716,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 +28788,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 +28822,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 +28850,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 +28990,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 +29006,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:2027 +#: 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 +29091,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 +29125,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 +29154,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 +29183,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 +29264,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 +29293,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 +29320,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 +29344,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 +29369,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 +29392,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 +29401,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 +29413,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 +29427,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 +29463,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 +29475,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 +29512,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 +29521,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 +29541,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 +29577,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 +29625,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 +29634,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 +29718,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 +29815,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 +29870,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 +29935,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 +30027,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 +30057,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 +30074,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 +30195,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 +30216,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 +30228,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 +30263,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 "" @@ -30056,11 +30312,8 @@ 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 "" @@ -30075,8 +30328,10 @@ msgstr "" 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 "" @@ -30092,7 +30347,7 @@ msgstr "" 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 +30376,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 +30399,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 +30414,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:1272 msgid "Y Field" msgstr "" @@ -30206,10 +30462,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 +30478,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30517,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 +30525,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 +30533,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 +30560,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 +30568,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 +30592,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 +30600,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 +30613,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 +30637,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 +30691,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 +30721,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 +30751,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 +30759,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 +30771,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 +30819,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 +30839,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 +30848,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 +30863,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 +30876,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 "" @@ -30666,7 +30928,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 +30975,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 +31052,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 +31094,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 +31116,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 +31135,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 +31158,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 +31174,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 +31200,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 +31258,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 +31268,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 +31310,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 +31375,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 +31395,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 +31448,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 +31471,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 +31541,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 +31614,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 +31698,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 +31800,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 +31842,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 +31863,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 +31877,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 +31917,11 @@ msgstr "" msgid "{0} Map" msgstr "" -#: frappe/public/js/frappe/form/quick_entry.js:122 +#: frappe/public/js/frappe/form/quick_entry.js:135 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 +31929,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:984 msgid "{0} Reports" msgstr "" @@ -31663,11 +31942,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 +32008,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 +32037,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 +32066,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 +32103,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 +32124,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 +32136,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 +32152,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 +32170,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 +32212,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 +32236,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 +32249,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 +32281,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 +32294,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 +32308,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 +32379,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 +32424,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 +32457,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 +32482,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 +32496,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 +32504,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 +32572,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 +32584,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 +32592,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 +32608,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,7 +32620,7 @@ 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 "" @@ -32278,79 +32628,51 @@ msgstr "" 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 +32680,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 +32745,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:1330 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:222 msgid "{1} saved" msgstr "" @@ -32407,11 +32773,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..841e6f31be 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13: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:983 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:870 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 "" + #: 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1656,11 @@ 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}." @@ -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 "" #: 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:997 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 "Додели" @@ -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:132 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:148 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-у нема података" @@ -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 "" + #: 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 "" + #: 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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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}" @@ -5984,6 +6043,14 @@ msgstr "Креирано на" 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}" @@ -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" @@ -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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:964 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 "" + #. 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})" @@ -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,11 +8185,11 @@ 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 "Документ се не може користити као вредност филтера" @@ -8116,15 +8197,15 @@ msgstr "Документ се не може користити као вредн 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:860 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 "" + #. 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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 "Грешка" @@ -9451,7 +9544,7 @@ msgstr "Евиденције грешака" msgid "Error Message" msgstr "Порука о грешци" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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 "" + #. 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:945 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 "Праћен од стране" @@ -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:2220 #: 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:1919 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:902 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 "" + #. 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:1716 +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 @@ -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:1004 +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:1690 msgid "Include filters" msgstr "Укључи филтере" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "Укључи сакривене колоне" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "Неважећи назив поља табеле" @@ -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 "" + #: 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 "" + #. 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:1273 #: 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 "Листе" @@ -15274,9 +15432,9 @@ msgstr "Учита више" #: 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/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:1136 msgid "Loading" msgstr "Учитавање" @@ -15293,7 +15451,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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} редова" +#. 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:947 #: 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 "Недостајуће поље" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "Није извршена ниједна промена" @@ -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 @@ -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 "Нема ничег новог" @@ -17798,7 +17980,7 @@ 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/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,9 +18904,9 @@ 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:1884 msgid "PDF" msgstr "PDF" @@ -18726,7 +18915,9 @@ 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 Генератор" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20591,11 @@ 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 "Мапирање штампача није подешено." @@ -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:960 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:247 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 "" + +#. 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' @@ -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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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 "" -#: 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:196 #: 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:2040 +#: 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:2043 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:883 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 "Изабери формат штампе" @@ -23537,11 +23739,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 +23769,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 +23809,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 +23839,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" @@ -23689,7 +23896,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 +23959,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 +23998,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 +24092,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 +24102,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 +24129,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 +24165,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 +24213,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 +24239,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:2199 msgid "Set Level" msgstr "Постави ниво" @@ -24073,8 +24282,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 +24303,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 +24436,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 +24460,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 +24472,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "Поставке аутоматског имејла" @@ -24297,13 +24506,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 +24521,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 +24581,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 +24630,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 +24682,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 +24802,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 +24944,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 +25067,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 +25242,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 +25281,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 +25336,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 +25375,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 +25383,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 +25451,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 +25624,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 +25662,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 +25776,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 +25790,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 +25811,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:268 #: 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 +25848,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 +25872,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 +25902,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 +25937,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 +25984,7 @@ msgstr "Наслов успеха" msgid "Successful Job Count" msgstr "Број успешних задатака" -#: frappe/model/workflow.py:363 +#: frappe/model/workflow.py:384 msgid "Successful Transactions" msgstr "Успешне трансакције" @@ -25803,7 +26009,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 +26034,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 +26075,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 +26088,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 +26157,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 +26167,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 +26294,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 @@ -26180,6 +26385,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 +26406,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 +26447,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 +26456,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 +26474,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 +26482,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 +26506,17 @@ msgid "Tag Link" msgstr "Линк ознаке" #: frappe/model/meta.py:59 -#: frappe/public/js/frappe/form/templates/form_sidebar.html:102 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:123 #: 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/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 +26600,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 +26698,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 +26754,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 +26770,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 +26796,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 +26871,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 +26892,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 +26912,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 +26924,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}." @@ -26741,7 +27001,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 +27009,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "Већ постоји {0} са истим филтерима у реду чекања:" @@ -26758,7 +27018,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 +27030,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 +27042,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "Већ постоји {0} са истим филтерима у реду чекања:" @@ -26798,7 +27058,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 +27066,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 +27139,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 +27167,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 +27183,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 +27205,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 +27233,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 +27256,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ово је извештај који се генерише у позадини. Поставите одговарајуће филтере и затим генеришите нови извештај." @@ -27038,15 +27298,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:1069 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 +27314,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:881 msgid "This report was generated {0}." msgstr "Овај извештај је генерисан {0}." @@ -27078,7 +27338,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 +27382,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 +27413,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 +27421,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 +27504,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 +27535,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 +27610,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 +27633,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 +27724,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:882 msgid "To get the updated report, click on {0}." msgstr "За ажурирани извештај кликните на {0}." @@ -27520,31 +27777,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 +27820,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 +27828,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 +27896,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "Укупно" @@ -27670,7 +27914,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 +28016,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 +28052,7 @@ msgstr "Транзиције" msgid "Translatable" msgstr "Могуће превођење" -#: frappe/public/js/frappe/views/reports/query_report.js:2274 +#: frappe/public/js/frappe/views/reports/query_report.js:2341 msgid "Translate Data" msgstr "Преведи податке" @@ -27819,7 +28063,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 +28099,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 +28148,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 +28195,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 +28209,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 +28218,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 @@ -28148,7 +28394,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 +28410,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 +28431,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:945 msgid "Unfollow" msgstr "Заустави праћење" @@ -28274,9 +28520,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 +28556,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 +28580,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 +28588,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 +28665,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} записа" @@ -28427,7 +28674,7 @@ msgstr "Ажурирај {0} записа" #: 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 +28686,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 +28715,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 +28727,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 +28780,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 +28852,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 +28886,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 +28914,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 +29054,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 +29070,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:2027 +#: 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 +29155,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 +29189,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 +29218,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 +29247,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 +29328,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 +29357,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 +29384,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 +29408,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 +29433,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 +29456,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 +29465,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 +29477,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 +29491,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 +29527,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 +29539,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 +29576,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 +29585,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 +29605,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 +29641,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 +29689,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 +29698,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 +29782,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 +29879,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 +29934,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 +29999,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 +30091,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 +30121,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 +30138,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 +30259,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 +30280,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 +30292,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 +30327,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 "Радни простор" @@ -30121,11 +30376,8 @@ 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 "Подешавање радног простора" @@ -30140,8 +30392,10 @@ msgstr "Поставке радног простора завршене" 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 "Бочна трака радног простора" @@ -30157,7 +30411,7 @@ msgstr "Ставка бочне траке радног простора" 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 +30440,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 +30463,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 +30478,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:1272 msgid "Y Field" msgstr "Y поље" @@ -30271,10 +30526,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 +30542,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30581,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 +30589,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 +30597,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 +30624,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 +30632,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 +30656,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 +30664,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 +30677,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 +30701,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 +30755,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 +30785,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 "" + #: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Не можете уклонити опцију 'Искључиво за читање' за поље {0}" @@ -30552,7 +30815,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 +30823,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 +30835,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 "Немате дозволу да откажете све повезане документе." @@ -30621,7 +30883,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 +30903,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 +30912,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 +30927,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 +30940,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 "Морате бити системски корисник да бисте приступили овој страници." @@ -30731,7 +30992,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 +31039,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 +31116,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 +31158,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 +31180,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 +31199,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 +31222,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 +31238,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 +31264,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 +31322,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 +31332,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 +31374,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 +31439,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 +31459,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 +31512,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 +31535,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 +31605,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 +31678,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 +31762,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 +31864,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 +31906,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 +31927,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 +31941,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 +31981,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:135 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 +31993,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:984 msgid "{0} Reports" msgstr "{0} извештаји" @@ -31728,11 +32006,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 +32072,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 +32101,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 "" + #: 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 +32130,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}, јер постоје нејединствене постојеће вредности" @@ -31878,7 +32167,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 +32188,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 "" + +#: frappe/core/doctype/doctype/doctype.py:952 msgid "{0} is a mandatory field" msgstr "{0} је обавезно поље" @@ -31907,7 +32200,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 "" + +#: 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} није важеће поље за податак." @@ -31915,6 +32216,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}" @@ -31924,22 +32234,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}" @@ -31952,10 +32276,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} није поље за доцтyпе {1}" @@ -31972,12 +32300,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 +32313,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 +32345,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 "" + +#: 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 +32358,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 +32372,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 "" + +#: 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} је последњи пут ово уредио" @@ -32094,35 +32443,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 +32488,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 +32521,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 +32546,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 +32560,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 +32568,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 +32636,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 +32648,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 +32656,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 +32672,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,7 +32684,7 @@ msgstr "{0} {1} није пронађен" msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Поднети запис не може бити обрисан. Прво морате {2} отказати {3}." -#: frappe/model/base_document.py:1220 +#: frappe/model/base_document.py:1237 msgid "{0}, Row {1}" msgstr "{0}, ред {1}" @@ -32343,79 +32692,51 @@ msgstr "{0}, ред {1}" 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 +32744,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 "" + +#: 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}" @@ -32444,15 +32809,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:1330 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:222 msgid "{1} saved" msgstr "{1} сачувано" @@ -32472,11 +32837,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..9a5ffea76d 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:50\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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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 "" + #: 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,11 +1657,11 @@ 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}." @@ -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 "" + #. 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 "" + #. 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 "" #: 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:997 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" @@ -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:132 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:148 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" @@ -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 "" + #: 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 "" + #: 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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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}" @@ -5985,6 +6044,14 @@ msgstr "Kreirano na" msgid "Created By" msgstr "Kreirano od strane" +#: 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 "Kreirano prilagođeno polje {0} u {1}" @@ -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" @@ -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 "" + +#: frappe/public/js/frappe/views/reports/query_report.js:964 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 "" + #: 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 "" + #. 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 "" + #. 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})" @@ -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 "" #. 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,11 +8186,11 @@ 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" @@ -8117,15 +8198,15 @@ msgstr "Dokument se ne može koristiti kao vrednost filtera" 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:860 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 "" + +#: 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' @@ -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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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 "" + #. 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:1273 #: 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" @@ -9452,7 +9545,7 @@ msgstr "Evidencije grešaka" 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:169 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 "" + #. 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:2223 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:2199 #: 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:1899 +#: 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 "" + #. 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 "" + #. 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:1958 #: 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:1353 #: 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 @@ -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 "" + #. 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:945 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" @@ -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:2220 #: 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:1919 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:902 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 "" + #. 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:1716 +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 @@ -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 "" + #. 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:1004 +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" @@ -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:1690 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:1712 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:1682 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:1964 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" @@ -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 "" + #: 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 "" + +#: 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" @@ -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:1273 #: 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" @@ -15275,9 +15433,9 @@ msgstr "Učita više" #: 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/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:1136 msgid "Loading" msgstr "Učitavanje" @@ -15294,7 +15452,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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 "" + #. 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" +#. 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:947 #: 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" @@ -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 "" + #. 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:190 +#: 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 "" + #. 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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" @@ -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 @@ -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" @@ -17799,7 +17981,7 @@ 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/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 "" + #: 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,9 +18905,9 @@ 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:1884 msgid "PDF" msgstr "PDF" @@ -18727,7 +18916,9 @@ 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" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20592,11 @@ 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." @@ -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:960 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:247 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 "" + +#. 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' @@ -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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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 "" + #. 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 "" -#: 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:196 #: 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:2040 +#: 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:2043 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:883 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" @@ -23538,11 +23740,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 +23770,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 +23810,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 +23840,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 "" + #. Label of the send_email_alert (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Send Email Alert" @@ -23690,7 +23897,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 +23960,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 +23999,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 +24093,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 +24103,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 +24130,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 "" + +#: 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 +24166,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 +24214,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 +24240,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:2199 msgid "Set Level" msgstr "Postavi nivo" @@ -24074,8 +24283,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 +24304,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 +24437,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 +24461,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 +24473,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "Postavke automatskog imejla" @@ -24298,13 +24507,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 +24522,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 +24582,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 +24631,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 +24683,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 +24803,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 +24945,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 +25068,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 +25243,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 +25282,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 +25337,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 +25376,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 +25384,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 +25452,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 +25625,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 +25663,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 +25777,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 +25791,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 +25812,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:268 #: 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 +25849,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 +25873,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 +25903,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 +25938,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 +25985,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 +26010,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 +26035,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 +26076,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 +26089,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 +26158,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 +26168,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 +26295,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 @@ -26181,6 +26386,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 "" + #. Description of the 'Allow Roles' (Table MultiSelect) field in DocType #. 'Module Onboarding' #: frappe/desk/doctype/module_onboarding/module_onboarding.json @@ -26197,6 +26407,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 "" + #. 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 +26448,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 +26457,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 +26475,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 +26483,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 +26507,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/form/templates/form_sidebar.html:123 #: 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/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 +26601,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 +26699,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 +26755,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 +26771,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 +26797,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 +26872,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 +26893,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 +26913,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 +26925,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 "" + #: 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 +27002,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 +27010,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "Već postoji {0} sa istim filterima u redu čekanja:" @@ -26759,7 +27019,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 +27031,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 +27043,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "Već postoji {0} sa istim filterima u redu čekanja:" @@ -26799,7 +27059,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 +27067,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 +27140,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 +27168,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 +27184,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 +27206,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 +27234,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 +27257,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:2280 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 +27299,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:1069 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 +27315,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:881 msgid "This report was generated {0}." msgstr "Ovaj izveštaj je generisan {0}." @@ -27079,7 +27339,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 +27383,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 +27414,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 +27422,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 +27505,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 +27536,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 +27611,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 +27634,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 +27725,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:882 msgid "To get the updated report, click on {0}." msgstr "Za ažurirani izveštaj kliknite na {0}." @@ -27521,31 +27778,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 +27821,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 +27829,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 "" + +#: 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 +27897,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "Ukupno" @@ -27671,7 +27915,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 +28017,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 +28053,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:2341 msgid "Translate Data" msgstr "Prevedi podatke" @@ -27820,7 +28064,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 +28100,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 +28149,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 +28196,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 +28210,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 +28219,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 @@ -28149,7 +28395,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 +28411,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 +28432,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:945 msgid "Unfollow" msgstr "Zaustavi praćenje" @@ -28274,9 +28520,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 +28556,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 +28580,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 +28588,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 +28665,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" @@ -28427,7 +28674,7 @@ msgstr "Ažuriraj {0} zapisa" #: 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 +28686,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 +28715,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 +28727,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 +28780,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 +28852,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 +28886,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 +28914,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 +29054,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 +29070,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:2027 +#: 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 +29155,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 +29189,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 +29218,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 +29247,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 +29328,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 +29357,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 +29384,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 "" + +#: 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 +29408,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 +29433,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 "" + +#: frappe/model/base_document.py:1246 msgid "Value too big" msgstr "Vrednost je prevelika" @@ -29200,7 +29456,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 +29465,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 +29477,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 +29491,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 +29527,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 +29539,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 +29576,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 +29585,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 +29605,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 +29641,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 +29689,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 +29698,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 +29782,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 +29879,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 +29934,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 +29999,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 "" + #. Label of a chart in the Website Workspace #: frappe/website/workspace/website/website.json msgid "Website Visits" @@ -29833,15 +30091,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 +30121,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 +30138,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 +30259,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 "" + #. Label of the workflow_name (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Name" @@ -30022,11 +30280,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 +30292,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 +30327,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" @@ -30121,11 +30376,8 @@ 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" @@ -30140,8 +30392,10 @@ msgstr "Postavke radnog prostora završene" 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" @@ -30157,7 +30411,7 @@ msgstr "Stavka bočne trake radnog prostora" 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 +30440,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 +30463,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 +30478,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:1272 msgid "Y Field" msgstr "Y polje" @@ -30271,10 +30526,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 +30542,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30581,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 +30589,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 +30597,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 +30624,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 +30632,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 +30656,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 +30664,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 +30677,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 +30701,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 +30755,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 +30785,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 "" + #: 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 +30815,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 +30823,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 +30835,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 "" + +#: 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 +30883,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 +30903,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 +30912,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 +30927,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 +30940,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." @@ -30731,7 +30992,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 +31039,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 +31116,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 +31158,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 +31180,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 +31199,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 +31222,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 +31238,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 +31264,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 +31322,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 +31332,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 +31374,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 +31439,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 +31459,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 "" + +#: 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 +31512,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 +31535,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 +31605,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 +31678,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 +31762,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 +31864,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 +31906,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 +31927,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 +31941,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 +31981,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:135 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 +31993,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:984 msgid "{0} Reports" msgstr "{0} izveštaji" @@ -31728,11 +32006,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 +32072,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 +32101,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 +32130,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 "" + #: 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 +32167,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 +32188,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 "" + +#: frappe/core/doctype/doctype/doctype.py:952 msgid "{0} is a mandatory field" msgstr "{0} je obavezno polje" @@ -31907,7 +32200,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 "" + +#: 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} nije važeće polje za podatak." @@ -31915,6 +32216,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 "" + +#: 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} je između {1} i {2}" @@ -31924,22 +32234,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 "" + +#: 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} 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 +32276,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 "" + #: 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 +32300,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 +32313,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 +32345,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 "" + +#: 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 +32358,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 +32372,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 "" + +#: 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} 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 "" + +#: 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 +32443,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 +32488,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 +32521,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 +32546,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 +32560,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 +32568,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 +32636,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 +32648,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 +32656,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 +32672,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,7 +32684,7 @@ msgstr "{0} {1} nije pronađen" msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Podneti zapis ne može biti obrisan. Prvo morate {2} otkazati {3}." -#: frappe/model/base_document.py:1220 +#: frappe/model/base_document.py:1237 msgid "{0}, Row {1}" msgstr "{0}, red {1}" @@ -32343,79 +32692,51 @@ msgstr "{0}, red {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom dok se proces ne završi." -#: frappe/model/base_document.py: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 +32744,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 "" + +#: 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}: 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 "" + +#: 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 +32809,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:1330 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:222 msgid "{1} saved" msgstr "{1} sačuvano" @@ -32472,11 +32837,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..5f95982660 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:50\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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1657,11 @@ 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}." @@ -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:997 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" @@ -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:132 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:148 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" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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}" @@ -5985,6 +6044,14 @@ msgstr "Skapad" 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}" @@ -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" @@ -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:964 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})" @@ -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,11 +8186,11 @@ 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" @@ -8117,15 +8198,15 @@ msgstr "Dokument kan inte användas som filtervärde" 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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" @@ -9452,7 +9545,7 @@ msgstr "Fel Logg" msgid "Error Message" msgstr "Felmeddelande" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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" @@ -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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 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:1712 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:1682 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:1964 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" @@ -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:1273 #: 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" @@ -15274,9 +15433,9 @@ msgstr "Läs in mer" #: 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/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:1136 msgid "Loading" msgstr "Laddar" @@ -15293,7 +15452,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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" +#. 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:947 #: 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" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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" @@ -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 @@ -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" @@ -17798,7 +17981,7 @@ 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/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,9 +18905,9 @@ 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:1884 msgid "PDF" msgstr "PDF" @@ -18726,7 +18916,9 @@ 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" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20592,11 @@ 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" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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" @@ -23537,11 +23740,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 +23770,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 +23810,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 +23840,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 +23897,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 +23960,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 +23999,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 +24093,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 +24103,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 +24130,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 +24166,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 +24214,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 +24240,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:2199 msgid "Set Level" msgstr "Ange Nivå" @@ -24073,8 +24283,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 +24304,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 +24437,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 +24461,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 +24473,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "Automatisk E-post Rapport" @@ -24297,13 +24507,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 +24522,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 +24582,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 +24631,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 +24683,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 +24803,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 +24945,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 +25068,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 +25243,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 +25282,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 +25320,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 +25337,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 +25376,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 +25384,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 +25452,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 +25625,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 +25663,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 +25777,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 +25791,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 +25812,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:268 #: 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 +25849,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 +25873,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 +25903,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 +25938,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 +25985,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 +26010,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 +26035,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 +26076,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 +26089,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 +26158,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 +26168,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 +26295,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 @@ -26180,6 +26386,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 +26407,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 +26448,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 +26457,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 +26475,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 +26483,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 +26507,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/form/templates/form_sidebar.html:123 #: 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/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 +26601,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 +26699,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 +26751,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 +26767,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 +26793,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 +26868,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 +26889,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 +26909,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 +26921,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 +26998,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 +27006,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "Det finns {0} med samma filter redan i kö:" @@ -26754,7 +27015,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 +27027,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 +27039,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:990 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 +27055,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 +27063,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 +27136,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 +27164,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 +27180,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 +27202,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 +27229,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 +27252,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:2280 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 +27294,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:1069 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 +27310,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:881 msgid "This report was generated {0}." msgstr "Denna rapport skapades {0}." @@ -27073,7 +27334,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 +27378,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 +27409,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 +27417,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 +27500,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 +27531,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 +27606,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 +27629,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 +27719,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:882 msgid "To get the updated report, click on {0}." msgstr "Klicka på {0} att hämta uppdaterad rapport." @@ -27514,31 +27772,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 +27815,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 +27823,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 +27891,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "Totalt" @@ -27664,7 +27909,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 +28011,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 +28047,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:2341 msgid "Translate Data" msgstr "Översätt Data" @@ -27813,7 +28058,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 +28094,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 +28143,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 +28190,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 +28204,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 +28213,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 @@ -28142,7 +28389,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 +28405,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 +28426,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:945 msgid "Unfollow" msgstr "Sluta Följa" @@ -28268,9 +28515,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 +28551,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 +28575,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 +28583,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 +28660,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" @@ -28421,7 +28669,7 @@ msgstr "Uppdatera {0} poster" #: 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 +28681,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 +28710,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 +28722,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 +28775,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 +28847,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 +28881,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 +28909,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 +29049,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 +29065,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:2027 +#: 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 +29150,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 +29184,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 +29213,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 +29242,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 +29323,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 +29352,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 +29379,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 +29403,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 +29428,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 +29451,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 +29460,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 +29472,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 +29486,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 +29522,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 +29534,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 +29571,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 +29580,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 +29600,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 +29636,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 +29684,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 +29693,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 +29777,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 +29874,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 +29929,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 +29994,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 +30086,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 +30116,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 +30133,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 +30254,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 +30275,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 +30287,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 +30322,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" @@ -30115,11 +30371,8 @@ 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" @@ -30134,8 +30387,10 @@ msgstr "Arbetsyta Konfiguration Klar" 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" @@ -30151,7 +30406,7 @@ msgstr "Arbetsyta Sidofält Artikel" 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 +30435,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 +30458,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 +30473,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:1272 msgid "Y Field" msgstr "Y Fält" @@ -30265,10 +30521,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 +30537,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30576,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 +30584,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 +30592,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 +30619,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 +30627,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 +30651,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 +30659,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 +30672,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 +30696,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 +30750,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 +30780,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 +30810,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 +30818,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 +30830,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 +30878,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 +30898,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 +30907,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 +30922,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 +30935,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." @@ -30725,7 +30987,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 +31034,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 +31111,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 +31153,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 +31175,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 +31194,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 +31217,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 +31233,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 +31259,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 +31317,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 +31327,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 +31369,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 +31434,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 +31454,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 +31507,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 +31530,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 +31600,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 +31673,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 +31757,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 +31859,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 +31901,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 +31922,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 +31936,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 +31976,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:135 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 +31988,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:984 msgid "{0} Reports" msgstr "{0} Rapporter" @@ -31722,11 +32001,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 +32067,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 +32096,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 +32125,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 +32162,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 +32183,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 +32195,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 +32211,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 +32229,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 +32271,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 +32295,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 +32308,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 +32340,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 +32353,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 +32367,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 +32438,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 +32483,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 +32516,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 +32541,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 +32555,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 +32563,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 +32631,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 +32643,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 +32651,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 +32667,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,7 +32679,7 @@ msgstr "{0} {1} hittades inte" msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Godkänd Post kan inte tas bort. Du måste {2} Annullera {3} det först." -#: frappe/model/base_document.py:1220 +#: frappe/model/base_document.py:1237 msgid "{0}, Row {1}" msgstr "{0}, Rad {1}" @@ -32337,79 +32687,51 @@ msgstr "{0}, Rad {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "{0}/{1} komplett | Lämna denna flik öppen tills den är klar." -#: frappe/model/base_document.py: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 +32739,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 +32804,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:1330 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:222 msgid "{1} saved" msgstr "{1} sparad" @@ -32466,11 +32832,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..10e2b7ce0f 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:50\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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1463,11 @@ 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 "" @@ -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:997 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 "" @@ -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:132 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:135 +#: frappe/public/js/frappe/form/print_utils.js:148 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 "" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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 "" @@ -5786,6 +5845,14 @@ msgstr "" 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 "" @@ -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 "" @@ -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:964 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 "" @@ -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,11 +7984,11 @@ 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 "" @@ -7915,15 +7996,15 @@ msgstr "" 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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 "ข้อผิดพลาด" @@ -9249,7 +9342,7 @@ msgstr "" msgid "Error Message" msgstr "ข้อความข้อผิดพลาด" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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 "ตามด้วย" @@ -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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 msgid "Include filters" msgstr "รวมตัวกรอง" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "ชื่อฟิลด์ตารางไม่ถูกต้อง" @@ -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:1273 #: 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 "" @@ -15071,9 +15230,9 @@ msgstr "" #: 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/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:1136 msgid "Loading" msgstr "" @@ -15090,7 +15249,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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} แถว" +#. 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:947 #: 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 "ฟิลด์ที่หายไป" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "" @@ -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 @@ -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 "ไม่มีอะไรใหม่" @@ -17591,7 +17774,7 @@ 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/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,9 +18698,9 @@ 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:1884 msgid "PDF" msgstr "" @@ -18519,7 +18709,9 @@ 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" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20385,11 @@ 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 "ไม่ได้ตั้งค่าการแมปเครื่องพิมพ์" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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 "เลือกรูปแบบการพิมพ์" @@ -23330,11 +23533,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 +23563,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 +23603,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 +23633,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 +23690,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 +23753,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 +23792,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 +23886,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 +23896,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 +23923,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 +23959,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 +24007,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 +24033,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:2199 msgid "Set Level" msgstr "ตั้งค่าระดับ" @@ -23866,8 +24076,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 +24097,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 +24206,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 +24230,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 +24242,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "ตั้งค่าอีเมลอัตโนมัติ" @@ -24066,13 +24276,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 +24291,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 +24351,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 +24400,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 +24452,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 +24572,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 +24714,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 +24837,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 +25012,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 +25051,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 +25106,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 +25145,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 +25153,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 +25221,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 +25394,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 +25432,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 +25546,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 +25560,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 +25581,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:268 #: 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 +25618,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 +25642,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 +25672,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 +25707,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 +25754,7 @@ msgstr "ชื่อเรื่องสำเร็จ" msgid "Successful Job Count" msgstr "จำนวนงานที่สำเร็จ" -#: frappe/model/workflow.py:363 +#: frappe/model/workflow.py:384 msgid "Successful Transactions" msgstr "ธุรกรรมที่สำเร็จ" @@ -25572,7 +25779,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 +25804,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 +25845,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 +25858,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 +25927,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 +25937,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 +26064,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 @@ -25949,6 +26155,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 +26176,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 +26217,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 +26226,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 +26244,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 +26252,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 +26276,17 @@ msgid "Tag Link" msgstr "" #: frappe/model/meta.py:59 -#: frappe/public/js/frappe/form/templates/form_sidebar.html:102 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:123 #: 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/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 +26370,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 +26466,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 +26518,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 +26674,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 +26686,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 +26763,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 +26771,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -26519,7 +26780,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 +26792,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 +26804,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "มี {0} ที่มีตัวกรองเดียวกันอยู่ในคิวแล้ว:" @@ -26559,7 +26820,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 +26828,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 +26901,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 +26929,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 +26945,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 +26966,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 +26991,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 +27014,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "นี่คือรายงานพื้นหลัง โปรดตั้งค่าตัวกรองที่เหมาะสมแล้วสร้างใหม่" @@ -26795,15 +27056,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:1069 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 +27072,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:881 msgid "This report was generated {0}." msgstr "รายงานนี้ถูกสร้างขึ้น {0}" @@ -26835,7 +27096,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 +27140,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 +27171,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 +27179,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 +27262,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 +27293,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 +27368,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 +27391,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 +27477,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:882 msgid "To get the updated report, click on {0}." msgstr "เพื่อรับรายงานที่อัปเดต คลิกที่ {0}" @@ -27272,31 +27530,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 +27573,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 +27581,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 +27649,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "รวม" @@ -27422,7 +27667,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 +27767,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 +27803,7 @@ msgstr "การเปลี่ยนผ่าน" msgid "Translatable" msgstr "สามารถแปลได้" -#: frappe/public/js/frappe/views/reports/query_report.js:2274 +#: frappe/public/js/frappe/views/reports/query_report.js:2341 msgid "Translate Data" msgstr "แปลข้อมูล" @@ -27569,7 +27814,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 +27850,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 +27899,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 +27946,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 +27960,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 +27969,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 @@ -27897,7 +28144,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 +28160,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 +28181,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:945 msgid "Unfollow" msgstr "เลิกติดตาม" @@ -28021,9 +28268,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 +28304,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 +28328,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 +28336,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 +28413,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}" @@ -28174,7 +28422,7 @@ msgstr "อัปเดตระเบียน {0}" #: 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 +28434,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 +28463,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 +28475,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 +28528,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 +28600,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 +28634,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 +28662,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 +28802,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 +28818,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:2027 +#: 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 +28903,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 +28937,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 +28966,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 +28995,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 +29076,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 +29105,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 +29132,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 +29156,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 +29181,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 +29204,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 +29213,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 +29225,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 +29239,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 +29275,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 +29287,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 +29324,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 +29333,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 +29353,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 +29389,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 +29437,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 +29446,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 +29530,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 +29627,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 +29682,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 +29747,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 +29839,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 +29869,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 +29886,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 +30007,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 +30028,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 +30040,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 +30075,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 "พื้นที่ทำงาน" @@ -29868,11 +30124,8 @@ 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 "การตั้งค่าพื้นที่ทำงาน" @@ -29887,8 +30140,10 @@ msgstr "การตั้งค่าพื้นที่ทำงานเส 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 "" @@ -29904,7 +30159,7 @@ msgstr "" 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 +30188,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 +30211,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 +30226,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:1272 msgid "Y Field" msgstr "ฟิลด์ Y" @@ -30018,10 +30274,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 +30290,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30329,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 +30337,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 +30345,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 +30372,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 +30380,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 +30404,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 +30412,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 +30425,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 +30449,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 +30503,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 +30533,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 +30563,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 +30571,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 +30583,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 +30631,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 +30651,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 +30660,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 +30675,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 +30688,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 "คุณต้องเป็นผู้ใช้ระบบเพื่อเข้าถึงหน้านี้" @@ -30478,7 +30740,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 +30787,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 +30864,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 +30906,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 +30928,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 +30947,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 +30970,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 +30986,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 +31012,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 +31070,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 +31080,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 +31122,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 +31187,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 +31207,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 +31260,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 +31283,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 +31353,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 +31426,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 +31510,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 +31612,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 +31654,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 +31675,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 +31689,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 +31729,11 @@ msgstr "" msgid "{0} Map" msgstr "แผนที่ {0}" -#: frappe/public/js/frappe/form/quick_entry.js:122 +#: frappe/public/js/frappe/form/quick_entry.js:135 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 +31741,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:984 msgid "{0} Reports" msgstr "รายงาน {0}" @@ -31475,11 +31754,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 +31820,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 +31849,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 +31878,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 +31915,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 +31936,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 +31948,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 +31964,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 +31982,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 +32024,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 +32048,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 +32061,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 +32093,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 +32106,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 +32120,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 +32191,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 +32236,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 +32269,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 +32294,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 +32308,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 +32316,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 +32384,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 +32396,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 +32404,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 +32420,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,7 +32432,7 @@ msgstr "ไม่พบ {0} {1}" msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: ไม่สามารถลบระเบียนที่ส่งได้ คุณต้อง {2} ยกเลิก {3} ก่อน" -#: frappe/model/base_document.py:1220 +#: frappe/model/base_document.py:1237 msgid "{0}, Row {1}" msgstr "{0}, แถว {1}" @@ -32090,79 +32440,51 @@ msgstr "{0}, แถว {1}" 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 +32492,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 +32557,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:1330 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:222 msgid "{1} saved" msgstr "{1} ถูกบันทึกแล้ว" @@ -32219,11 +32585,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..6c0b075f09 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:50\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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1646,11 @@ 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ı." @@ -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:997 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" @@ -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:132 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:148 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 "" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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,7 +6021,7 @@ 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/public/js/frappe/list/list_sidebar_group_by.js:39 @@ -5973,6 +6030,14 @@ msgstr "Oluşturulma Zamanı" 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 @@ -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,7 +6320,7 @@ 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 msgid "Custom Reports" @@ -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:964 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' @@ -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,11 +8169,11 @@ 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 "" @@ -8102,15 +8181,15 @@ msgstr "" 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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" @@ -9436,7 +9527,7 @@ msgstr "Hata Günlükleri" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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" @@ -10735,12 +10853,12 @@ 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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 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:1712 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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ı" @@ -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:1273 #: 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" @@ -15259,9 +15415,9 @@ msgstr "Daha fazla yükle" #: 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/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:1136 msgid "Loading" msgstr "Yükleniyor" @@ -15278,7 +15434,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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}" +#. 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:947 #: 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" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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ı" @@ -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 @@ -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" @@ -17781,7 +17961,7 @@ 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/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,9 +18885,9 @@ 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:1884 msgid "PDF" msgstr "PDF" @@ -18709,29 +18896,31 @@ 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 msgid "PDF generation failed" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,13 +20570,13 @@ 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ı." @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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,7 +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" +msgstr "" #. Label of the select_workspaces_section (Section Break) field in DocType #. 'Workspace Settings' @@ -23520,11 +23720,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 +23740,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 +23750,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 +23790,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 +23820,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 +23839,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 +23850,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 +23875,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 +23895,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 +23916,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 +23934,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 +23979,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 +24032,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 +24042,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 +24063,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 +24073,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 +24081,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 +24091,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 +24110,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 +24146,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 +24164,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 +24192,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 +24220,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:2199 msgid "Set Level" msgstr "Seviye Ayarla" @@ -24025,12 +24232,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 +24263,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 +24282,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 +24417,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 +24427,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 +24441,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 +24453,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "Otomatik E-Postayı Ayarla" @@ -24265,7 +24472,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 +24487,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 +24502,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 +24527,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 +24562,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 +24584,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 +24611,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 +24624,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 +24656,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 +24675,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 +24693,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 +24720,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 +24741,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 +24749,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 +24781,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 +24805,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 +24853,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 +24885,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 +24902,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 +24923,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 +24937,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 +24952,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 +24983,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 +25025,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 +25048,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 +25086,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 +25123,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 +25168,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 +25223,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 +25246,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 +25260,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 +25317,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 +25335,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 +25356,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 +25364,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 +25408,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 +25432,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 +25451,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 +25491,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 +25500,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 +25533,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 +25555,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 +25605,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 +25643,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 +25671,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 +25680,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 +25696,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 +25707,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 +25722,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 +25738,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 +25757,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 +25769,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 +25792,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:268 #: 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 +25827,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 +25853,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 +25883,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 +25918,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 +25938,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 +25963,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 +25990,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 +26015,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 +26056,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 +26069,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 +26109,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 +26138,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 +26148,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 +26275,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 @@ -26163,6 +26366,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 +26387,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 +26400,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 +26426,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 +26453,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 +26463,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 +26487,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/form/templates/form_sidebar.html:123 #: 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/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 +26543,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 +26570,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 +26615,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 +26641,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 +26679,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 +26735,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 +26751,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 +26777,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 +26836,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 +26873,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 +26893,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 +26905,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 +26948,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 +26961,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 +26971,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 +26990,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "Aynı filtrelere sahip {0} zaten kuyrukta mevcut:" @@ -26741,7 +26999,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 +27011,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 +27023,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "Aynı filtrelere sahip {0} kuyrukta zaten mevcut:" @@ -26781,7 +27039,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 +27047,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 +27076,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 +27086,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 +27120,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 +27137,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 +27164,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 +27185,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 +27210,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 +27231,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:2280 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 +27265,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 +27275,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:1069 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 +27291,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:881 msgid "This report was generated {0}." msgstr "Bu rapor {0} oluşturuldu." @@ -27057,7 +27315,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 +27359,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 +27390,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 +27398,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 +27408,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 +27418,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 +27450,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 +27466,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 +27481,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 +27488,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 +27533,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 +27587,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 +27603,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 +27639,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 +27674,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 +27702,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:882 msgid "To get the updated report, click on {0}." msgstr "Güncellenmiş raporu almak için {0} adresine tıklayın." @@ -27500,31 +27755,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 +27798,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 +27806,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 +27826,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 +27840,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 +27848,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 +27859,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 +27867,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "Toplam" @@ -27650,7 +27892,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 +27905,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 +27950,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 +27965,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 +27977,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 +27985,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 +28007,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 +28026,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:2341 msgid "Translate Data" msgstr "" @@ -27797,9 +28037,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 +28075,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 +28086,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 +28122,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 +28159,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 +28185,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 +28194,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 +28284,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://" @@ -28128,7 +28370,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 +28386,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 +28407,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:945 msgid "Unfollow" msgstr "Takibi Bırak" @@ -28199,7 +28441,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 +28488,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 +28530,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 +28554,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 +28562,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 +28576,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 +28611,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 +28633,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" @@ -28405,7 +28648,7 @@ msgstr "{0} Kaydı Güncelle" #: 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 +28660,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 +28689,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 +28701,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 +28727,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 +28744,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 +28763,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 +28779,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 +28788,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 +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 "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 +28826,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 +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 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 +28860,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 +28888,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 +28933,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 +28947,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 +28976,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 +28992,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 +29028,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 +29044,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:2027 +#: 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 +29069,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 +29100,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 +29121,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 +29149,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 +29163,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 +29192,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 +29221,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 +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 "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 +29302,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 +29331,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 +29341,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 +29358,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 +29382,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 +29407,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 +29430,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 +29439,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 +29451,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 +29462,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 +29489,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 +29501,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 +29513,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 +29535,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 +29548,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 +29579,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 +29615,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 +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 "" @@ -29423,7 +29672,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 +29683,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 +29739,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 +29756,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 +29780,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 +29789,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 +29853,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 +29908,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 +29973,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 +30012,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 +30041,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 +30053,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 +30065,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 +30081,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 +30095,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 +30112,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 +30130,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 +30187,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 +30198,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 +30213,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 +30222,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 +30233,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 +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 "İş 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 +30266,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 +30301,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ı" @@ -30099,11 +30350,8 @@ 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ı" @@ -30118,8 +30366,10 @@ msgstr "Çalışma Alanı Kurulumu Tamamlandı" 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 "" @@ -30135,14 +30385,14 @@ msgstr "" 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 +30414,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 +30430,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 +30452,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:1272 msgid "Y Field" msgstr "Y Alanı" @@ -30245,14 +30496,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 +30516,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30555,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 +30563,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 +30571,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 +30598,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 +30606,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 +30630,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 +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 "Ş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 +30651,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 +30675,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 +30729,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 +30759,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 +30789,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 +30797,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 +30809,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 +30857,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 +30877,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 +30886,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 +30901,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 +30914,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." @@ -30709,7 +30966,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 +31013,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 +31090,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 +31118,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 +31132,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 +31154,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 +31171,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 +31185,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 +31194,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 +31204,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 +31230,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 +31278,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 +31304,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 +31315,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 +31328,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 +31348,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 +31369,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 +31380,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 +31391,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 +31413,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 +31483,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 +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 "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 +31547,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 +31579,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 +31592,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 +31604,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 +31614,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 +31640,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 +31666,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 +31678,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 +31706,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 +31734,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 +31807,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 +31838,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 +31857,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 +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 "" -#: 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 +31901,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 +31915,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 +31955,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:135 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 +31967,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:984 msgid "{0} Reports" msgstr "{0} Raporları" @@ -31706,11 +31980,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 +32046,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 +32075,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 +32104,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 +32141,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 +32162,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 +32174,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 +32190,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 +32208,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 +32250,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 +32274,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 +32287,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 +32319,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 +32332,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 +32346,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 +32417,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 +32462,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 +32495,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 +32520,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 +32534,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 +32542,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 +32610,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 +32622,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 +32630,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 +32646,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,7 +32658,7 @@ msgstr "{0} {1} bulunamadı." msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Gönderilen kayıt silinemez. Önce {2} İptal {3} işlemini gerçekleştirin." -#: frappe/model/base_document.py:1220 +#: frappe/model/base_document.py:1237 msgid "{0}, Row {1}" msgstr "{0}, Satır {1}" @@ -32321,79 +32666,51 @@ msgstr "{0}, Satır {1}" 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 +32718,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 +32783,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:1330 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:222 msgid "{1} saved" msgstr "{1} kaydedildi" @@ -32450,11 +32811,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..5b1f8ed126 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:50\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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1463,11 @@ 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 "" @@ -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:997 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 "" @@ -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:132 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:135 +#: frappe/public/js/frappe/form/print_utils.js:148 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 "" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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 "" @@ -5786,6 +5845,14 @@ msgstr "" 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 "" @@ -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 "" @@ -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:964 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 "" @@ -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,11 +7984,11 @@ 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 "" @@ -7915,15 +7996,15 @@ msgstr "" 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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 "" @@ -9249,7 +9342,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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 "" @@ -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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "" @@ -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:1273 #: 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 "" @@ -15071,9 +15230,9 @@ msgstr "" #: 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/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:1136 msgid "Loading" msgstr "" @@ -15090,7 +15249,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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 "" +#. 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:947 #: 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 "" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "" @@ -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 @@ -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 "" @@ -17591,7 +17774,7 @@ 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/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,9 +18698,9 @@ 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:1884 msgid "PDF" msgstr "" @@ -18519,7 +18709,9 @@ 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 "" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20385,11 @@ 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 "" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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 "" @@ -23330,11 +23533,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 +23563,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 +23603,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 +23633,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 +23690,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 +23753,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 +23792,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 +23886,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 +23896,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 +23923,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 +23959,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 +24007,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 +24033,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:2199 msgid "Set Level" msgstr "" @@ -23866,8 +24076,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 +24097,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 +24206,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 +24230,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 +24242,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "" @@ -24066,13 +24276,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 +24291,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 +24351,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 +24400,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 +24452,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 +24572,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 +24714,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 +24837,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 +25012,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 +25051,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 +25106,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 +25145,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 +25153,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 +25221,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 +25394,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 +25432,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 +25546,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 +25560,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 +25581,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:268 #: 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 +25618,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 +25642,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 +25672,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 +25707,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 +25754,7 @@ msgstr "" msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:363 +#: frappe/model/workflow.py:384 msgid "Successful Transactions" msgstr "" @@ -25572,7 +25779,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 +25804,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 +25845,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 +25858,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 +25927,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 +25937,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 +26064,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 @@ -25949,6 +26155,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 +26176,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 +26217,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 +26226,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 +26244,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 +26252,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 +26276,17 @@ msgid "Tag Link" msgstr "" #: frappe/model/meta.py:59 -#: frappe/public/js/frappe/form/templates/form_sidebar.html:102 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:123 #: 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/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 +26370,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 +26466,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 +26518,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 +26674,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 +26686,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 +26763,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 +26771,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -26519,7 +26780,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 +26792,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 +26804,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26559,7 +26820,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 +26828,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 +26901,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 +26929,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 +26945,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 +26966,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 +26991,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 +27014,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26795,15 +27056,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:1069 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26811,7 +27072,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:881 msgid "This report was generated {0}." msgstr "" @@ -26835,7 +27096,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 +27138,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 +27171,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 +27179,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 +27262,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 +27293,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 +27368,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 +27391,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 +27477,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:882 msgid "To get the updated report, click on {0}." msgstr "" @@ -27272,31 +27530,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 +27573,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 +27581,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 +27649,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "" @@ -27422,7 +27667,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 +27767,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 +27803,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2274 +#: frappe/public/js/frappe/views/reports/query_report.js:2341 msgid "Translate Data" msgstr "" @@ -27569,7 +27814,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 +27850,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 +27899,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 +27946,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 +27960,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 +27969,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 @@ -27897,7 +28144,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 +28160,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 +28181,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:945 msgid "Unfollow" msgstr "" @@ -28021,9 +28268,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 +28304,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 +28328,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 +28336,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 +28413,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,7 +28422,7 @@ msgstr "" #: 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 +28434,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 +28463,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 +28475,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 +28528,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 +28600,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 +28634,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 +28662,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 +28802,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 +28818,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:2027 +#: 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 +28903,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 +28937,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 +28966,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 +28995,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 +29076,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 +29105,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 +29132,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 +29156,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 +29181,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 +29204,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 +29213,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 +29225,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 +29239,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 +29275,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 +29287,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 +29324,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 +29333,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 +29353,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 +29389,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 +29437,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 +29446,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 +29530,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 +29627,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 +29682,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 +29747,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 +29839,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 +29869,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 +29886,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 +30007,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 +30028,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 +30040,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 +30075,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 "" @@ -29868,11 +30124,8 @@ 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 "" @@ -29887,8 +30140,10 @@ msgstr "" 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 "" @@ -29904,7 +30159,7 @@ msgstr "" 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 +30188,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 +30211,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 +30226,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:1272 msgid "Y Field" msgstr "" @@ -30018,10 +30274,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 +30290,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30329,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 +30337,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 +30345,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 +30372,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 +30380,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 +30404,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 +30412,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 +30425,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 +30449,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 +30503,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 +30533,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 +30563,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 +30571,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 +30583,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 +30631,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 +30651,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 +30660,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 +30675,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 +30688,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 "" @@ -30478,7 +30740,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 +30787,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 +30864,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 +30906,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 +30928,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 +30947,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 +30970,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 +30986,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 +31012,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 +31070,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 +31080,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 +31122,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 +31187,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 +31207,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 +31260,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 +31283,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 +31353,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 +31426,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 +31510,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 +31540,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 +31612,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 +31654,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 +31675,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 +31689,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 +31729,11 @@ msgstr "" msgid "{0} Map" msgstr "" -#: frappe/public/js/frappe/form/quick_entry.js:122 +#: frappe/public/js/frappe/form/quick_entry.js:135 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 +31741,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:984 msgid "{0} Reports" msgstr "" @@ -31475,11 +31754,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 +31820,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 +31849,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 +31878,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 +31915,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 +31936,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 +31948,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 +31964,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 +31982,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 +32024,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 +32048,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 +32061,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 +32093,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 +32106,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 +32120,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 +32191,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 +32236,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 +32269,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 +32294,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 +32308,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 +32316,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 +32384,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 +32396,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 +32404,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 +32420,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,7 +32432,7 @@ 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 "" @@ -32090,79 +32440,51 @@ msgstr "" 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 +32492,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 +32557,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:1330 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:222 msgid "{1} saved" msgstr "" @@ -32219,11 +32585,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..5a9db27a73 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-22 13:03+0000\n" +"PO-Revision-Date: 2026-01-23 13:50\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:983 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:870 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:1911 +#: frappe/public/js/frappe/views/reports/query_report.js:1914 #: 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,11 +1652,11 @@ 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}。" @@ -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:2199 #: 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:1280 #: 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:138 +#: frappe/public/js/frappe/form/print_utils.js:162 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:1312 +#: 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:1239 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}" @@ -5980,6 +6039,14 @@ msgstr "创建时间" 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}" @@ -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" @@ -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:964 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})" @@ -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,11 +8181,11 @@ 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 "" @@ -8112,15 +8193,15 @@ msgstr "" 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:860 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:908 +#: frappe/public/js/frappe/views/reports/query_report.js:1863 #: 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:373 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:1273 #: 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 "错误" @@ -9447,7 +9540,7 @@ msgstr "错误日志" msgid "Error Message" msgstr "错误信息" -#: frappe/public/js/frappe/form/print_utils.js:156 +#: frappe/public/js/frappe/form/print_utils.js:169 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:2223 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:2199 #: 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:1899 +#: 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:1958 #: 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:1353 #: 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:945 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 "被谁关注" @@ -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:2220 #: 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:1919 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:902 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:1716 +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:1004 +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:1690 msgid "Include filters" msgstr "包括过滤条件" -#: frappe/public/js/frappe/views/reports/query_report.js:1670 +#: frappe/public/js/frappe/views/reports/query_report.js:1712 msgid "Include hidden columns" msgstr "包含隐藏列" -#: frappe/public/js/frappe/views/reports/query_report.js:1642 +#: frappe/public/js/frappe/views/reports/query_report.js:1682 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:1964 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 "表字段名无效" @@ -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:1273 #: 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 "列表" @@ -15269,9 +15428,9 @@ msgstr "加载更多" #: 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/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:1136 msgid "Loading" msgstr "载入中" @@ -15288,7 +15447,7 @@ 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/form/sidebar/share.js:57 #: frappe/public/js/frappe/list/base_list.js:1063 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:91 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 @@ -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}行" +#. 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:947 #: 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 "缺失字段" @@ -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:190 +#: 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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 "未作更改" @@ -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 @@ -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 "无新消息" @@ -17793,7 +17976,7 @@ 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/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,9 +18900,9 @@ 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:1884 msgid "PDF" msgstr "PDF" @@ -18721,7 +18911,9 @@ 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生成器" @@ -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:1232 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:1455 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:1869 #: 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:238 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:112 #: 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,11 +20587,11 @@ 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 "未设置打印机映射" @@ -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:960 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:247 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:914 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:1858 #: 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:2048 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:1041 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:2086 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:957 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:196 #: 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:2040 +#: 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:2043 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:883 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 "选择打印格式" @@ -23532,11 +23735,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 +23765,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 +23805,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 +23835,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 +23892,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 +23955,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 +23994,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 +24088,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 +24098,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 +24125,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 +24161,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 +24209,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 +24235,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:2199 msgid "Set Level" msgstr "设置层级" @@ -24068,8 +24278,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 +24299,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 +24432,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 +24456,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 +24468,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:1905 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Setup Auto Email" msgstr "设置电子邮件自动发送" @@ -24292,13 +24502,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 +24517,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 +24577,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 +24626,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 +24678,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 +24798,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 +24940,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 +25063,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 +25238,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 +25277,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 +25332,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 +25371,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 +25379,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 +25447,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 +25620,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 +25658,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 +25772,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 +25786,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 +25807,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:268 #: 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 +25844,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 +25868,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 +25898,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 +25933,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 +25980,7 @@ msgstr "成功标题" msgid "Successful Job Count" msgstr "成功任务数量" -#: frappe/model/workflow.py:363 +#: frappe/model/workflow.py:384 msgid "Successful Transactions" msgstr "成功事务" @@ -25798,7 +26005,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 +26030,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 +26071,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 +26084,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 +26153,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 +26163,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 +26290,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 @@ -26175,6 +26381,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 +26402,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 +26443,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 +26452,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 +26470,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 +26478,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 +26502,17 @@ msgid "Tag Link" msgstr "标签链接" #: frappe/model/meta.py:59 -#: frappe/public/js/frappe/form/templates/form_sidebar.html:102 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:123 #: 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/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 +26596,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 +26694,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 +26750,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 +26766,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 +26792,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 +26867,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 +26888,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 +26908,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 +26920,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 +26997,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 +27005,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:993 msgid "There are {0} with the same filters already in the queue:" msgstr "队列中已有{0}条相同筛选条件的记录:" @@ -26753,7 +27014,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 +27026,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 +27038,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:990 msgid "There is {0} with the same filters already in the queue:" msgstr "队列中已有{0}条相同筛选条件的记录:" @@ -26793,7 +27054,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 +27062,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 +27135,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 +27163,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 +27179,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 +27201,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 +27229,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 +27252,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:2280 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "此报表是后台运行报表,请设置恰当的过滤条件并点击右上角生成新报表按钮获取报表结果" @@ -27033,15 +27294,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:1069 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 +27310,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:881 msgid "This report was generated {0}." msgstr "报表{0}已生成。" @@ -27073,7 +27334,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 +27378,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 +27409,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 +27417,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 +27500,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 +27531,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 +27606,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 +27629,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 +27720,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:882 msgid "To get the updated report, click on {0}." msgstr "要获取已更新报表,请单击{0}。" @@ -27515,31 +27773,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 +27816,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 +27824,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 +27892,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:1371 +#: frappe/public/js/frappe/views/reports/report_view.js:1548 msgid "Total" msgstr "总计" @@ -27665,7 +27910,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 +28012,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 +28048,7 @@ msgstr "状态转换" msgid "Translatable" msgstr "可翻译" -#: frappe/public/js/frappe/views/reports/query_report.js:2274 +#: frappe/public/js/frappe/views/reports/query_report.js:2341 msgid "Translate Data" msgstr "翻译数据" @@ -27814,7 +28059,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 +28095,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 +28144,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 +28191,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 +28205,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 +28214,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 @@ -28143,7 +28390,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 +28406,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 +28427,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:945 msgid "Unfollow" msgstr "取消关注" @@ -28267,9 +28514,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 +28550,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 +28574,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 +28582,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 +28659,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}个单据" @@ -28420,7 +28668,7 @@ msgstr "更新{0}个单据" #: 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 +28680,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 +28709,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 +28721,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 +28774,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 +28846,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 +28880,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 +28908,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 +29048,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 +29064,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:2027 +#: 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 +29149,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 +29183,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 +29212,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 +29241,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 +29322,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 +29351,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 +29378,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 +29402,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 +29427,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 +29450,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 +29459,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 +29471,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 +29485,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 +29521,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 +29533,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 +29570,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 +29579,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 +29599,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 +29635,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 +29683,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 +29692,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 +29776,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 +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" @@ -29674,7 +29928,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 +29993,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 +30085,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 +30115,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 +30132,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 +30253,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 +30274,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 +30286,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 +30321,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 "工作区" @@ -30114,11 +30370,8 @@ 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 "工作区设置" @@ -30133,8 +30386,10 @@ msgstr "工作区设置完成" 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 "" @@ -30150,7 +30405,7 @@ msgstr "" 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 +30434,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 +30457,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 +30472,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:1272 msgid "Y Field" msgstr "Y轴字段" @@ -30264,10 +30520,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 +30536,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/form/controls/link.js:574 #: frappe/public/js/frappe/list/base_list.js:949 #: 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 +30575,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 +30583,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 +30591,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 +30618,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 +30626,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 +30650,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 +30658,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 +30671,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 +30695,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 +30749,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 +30779,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 +30809,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 +30817,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 +30829,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 +30877,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 +30897,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 +30906,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 +30921,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 +30934,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 "您需要是系统用户才能访问此页面" @@ -30724,7 +30986,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 +31033,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 +31110,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 +31152,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 +31174,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 +31193,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 +31216,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 +31232,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 +31258,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 +31316,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 +31326,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 +31368,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 +31433,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 +31453,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 +31506,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 +31529,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 +31599,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 +31672,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 +31756,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 +31858,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 +31900,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 +31921,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 +31935,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 +31975,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:135 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 +31987,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:984 msgid "{0} Reports" msgstr "{0}报告" @@ -31721,11 +32000,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 +32066,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 +32095,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 +32124,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 +32161,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 +32182,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 +32194,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 +32210,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 +32228,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 +32270,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 +32294,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 +32307,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 +32339,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 +32352,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 +32366,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 +32437,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 +32482,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 +32515,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 +32540,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 +32554,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 +32562,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 +32630,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 +32642,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 +32650,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 +32666,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,7 +32678,7 @@ msgstr "{0} {1}未找到" msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: 已提交单据不可被删除. 应 {2} 先取消 {3}." -#: frappe/model/base_document.py:1220 +#: frappe/model/base_document.py:1237 msgid "{0}, Row {1}" msgstr "{0},第{1}行" @@ -32336,79 +32686,51 @@ msgstr "{0},第{1}行" 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 +32738,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 +32803,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:1330 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:222 msgid "{1} saved" msgstr "{1}已保存" @@ -32465,11 +32831,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 "已完成{}" From 06d55e6bb73260958f9f20f94a6358612cdd3359 Mon Sep 17 00:00:00 2001 From: salauddin06 Date: Sat, 24 Jan 2026 13:14:09 +0530 Subject: [PATCH 209/263] docs: fix grammar in Philosophy section Add missing verb "are" in Applications sentence --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. From ead918c53fc9e0ef7a0983bfe402565002cb0125 Mon Sep 17 00:00:00 2001 From: AarDG10 Date: Sat, 24 Jan 2026 13:22:05 +0530 Subject: [PATCH 210/263] fix(user_permission): fix dead click effect on applicable for field --- frappe/core/doctype/user_permission/user_permission.js | 4 +++- frappe/core/doctype/user_permission/user_permission.py | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) 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()] From df7e007d087fcdf1ac3a1768c372684a245646f6 Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Sat, 24 Jan 2026 22:14:00 +0000 Subject: [PATCH 211/263] fix: show sidebar in print format builder --- .../page/print_format_builder/print_format_builder.js | 8 ++++++++ 1 file changed, 8 insertions(+) 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 bae82ba040..162908ac89 100644 --- a/frappe/printing/page/print_format_builder/print_format_builder.js +++ b/frappe/printing/page/print_format_builder/print_format_builder.js @@ -58,9 +58,17 @@ frappe.PrintFormatBuilder = class PrintFormatBuilder { this.setup_section_settings(); this.setup_column_selector(); this.setup_edit_custom_html(); + this.show_sidebar(); // $(this.page.sidebar).css({"position": 'fixed'}); // $(this.page.main).parent().css({"margin-left": '16.67%'}); } + show_sidebar() { + $(".layout-side-section").css({ + display: "block", + flex: "0 0 260px", + maxWidth: "260px", + }); + } show_start() { this.page.main.html(frappe.render_template("print_format_builder_start", {})); this.page.clear_actions(); From 6a14b964f022d7175f272d105e7e95f78c6950eb Mon Sep 17 00:00:00 2001 From: MochaMind Date: Sun, 25 Jan 2026 11:33:12 +0530 Subject: [PATCH 212/263] fix: sync translations from crowdin (#36295) * fix: Hungarian translations * fix: Serbian (Cyrillic) translations * fix: Serbian (Latin) translations --- frappe/locale/hu.po | 10 +-- frappe/locale/sr.po | 162 ++++++++++++++++++++--------------------- frappe/locale/sr_CS.po | 152 +++++++++++++++++++------------------- 3 files changed, 162 insertions(+), 162 deletions(-) diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po index 1ccce767b6..ab6a138fa5 100644 --- a/frappe/locale/hu.po +++ b/frappe/locale/hu.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2026-01-22 13:03+0000\n" -"PO-Revision-Date: 2026-01-23 13:49\n" +"PO-Revision-Date: 2026-01-24 14:52\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -1272,7 +1272,7 @@ msgstr "Szegély Hozzáadása Felül" #: frappe/public/js/frappe/views/communication.js:195 msgid "Add CSS" -msgstr "" +msgstr "CSS Hozzáadása" #: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" @@ -1461,7 +1461,7 @@ msgstr "Mező Hozzáadása" #: frappe/public/js/frappe/form/grid.js:66 msgid "Add multiple" -msgstr "" +msgstr "Több hozzáadása" #: frappe/public/js/form_builder/components/Sidebar.vue:46 #: frappe/public/js/form_builder/components/Tabs.vue:153 @@ -1478,7 +1478,7 @@ msgstr "Oldaltörés Hozzáadása" #: frappe/public/js/frappe/form/grid.js:66 msgid "Add row" -msgstr "" +msgstr "Sor hozzáadása" #: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" @@ -1794,7 +1794,7 @@ msgstr "Igazítás Értéke" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Alignment" -msgstr "" +msgstr "Igazítás" #. Name of a role #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po index 841e6f31be..1560bdc634 100644 --- a/frappe/locale/sr.po +++ b/frappe/locale/sr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2026-01-22 13:03+0000\n" -"PO-Revision-Date: 2026-01-23 13:50\n" +"PO-Revision-Date: 2026-01-24 14:52\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Serbian (Cyrillic)\n" "MIME-Version: 1.0\n" @@ -1272,7 +1272,7 @@ msgstr "Додај ивицу на врху" #: frappe/public/js/frappe/views/communication.js:195 msgid "Add CSS" -msgstr "" +msgstr "Додај CSS" #: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" @@ -1461,7 +1461,7 @@ msgstr "Додај поље" #: frappe/public/js/frappe/form/grid.js:66 msgid "Add multiple" -msgstr "" +msgstr "Додај више" #: frappe/public/js/form_builder/components/Sidebar.vue:46 #: frappe/public/js/form_builder/components/Tabs.vue:153 @@ -1478,7 +1478,7 @@ msgstr "Додај прелом странице" #: frappe/public/js/frappe/form/grid.js:66 msgid "Add row" -msgstr "" +msgstr "Додај ред" #: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" @@ -1794,7 +1794,7 @@ msgstr "Поравнај вредности" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Alignment" -msgstr "" +msgstr "Поравнање" #. Name of a role #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' @@ -2555,7 +2555,7 @@ msgstr "Примени филтере" #: frappe/custom/doctype/customize_form/customize_form.js:271 msgid "Apply Module Export Filter" -msgstr "" +msgstr "Примени филтер за извоз модула" #. Label of the apply_strict_user_permissions (Check) field in DocType 'System #. Settings' @@ -2637,7 +2637,7 @@ msgstr "Да ли сте сигурни да желите да очистите #: frappe/public/js/frappe/form/grid.js:319 msgid "Are you sure you want to delete all {0} rows?" -msgstr "" +msgstr "Да ли сте сигурни да желите да обришете свих {0} редова?" #: frappe/public/js/frappe/form/controls/attach.js:38 #: frappe/public/js/frappe/form/sidebar/attachments.js:135 @@ -4292,7 +4292,7 @@ msgstr "Није могуће креирати приватни радни пр #: frappe/desk/doctype/desktop_icon/desktop_icon.py:54 msgid "Cannot delete Desktop Icon '{0}' as it is restricted" -msgstr "" +msgstr "Није могуће обрисати иконицу на радној површини '{0}' јер је ограничена" #: frappe/core/doctype/file/file.py:175 msgid "Cannot delete Home and Attachments folders" @@ -4660,7 +4660,7 @@ msgstr "Провери евиденцију грешака за више инф #. '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 "" +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." @@ -6045,11 +6045,11 @@ msgstr "Креирано од стране" #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174 msgid "Created By You" -msgstr "" +msgstr "Креирано од стране Вас" #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175 msgid "Created By {0}" -msgstr "" +msgstr "Креирано од стране {0}" #: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" @@ -7131,7 +7131,7 @@ msgstr "Обриши све" #: frappe/public/js/frappe/form/grid.js:367 msgid "Delete all {0} rows" -msgstr "" +msgstr "Обриши свих {0} редова" #: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "Delete and Generate New" @@ -7163,7 +7163,7 @@ msgstr "Обриши целу картицу заједно са пољима" #: frappe/public/js/frappe/form/grid.js:237 msgid "Delete row" -msgstr "" +msgstr "Обриши ред" #: frappe/public/js/form_builder/components/Section.vue:132 msgctxt "Button text" @@ -7191,7 +7191,7 @@ msgstr "Трајно обриши {0} ставке?" #: frappe/public/js/frappe/form/grid.js:240 msgid "Delete {0} rows" -msgstr "" +msgstr "Обриши {0} редова" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion @@ -7426,7 +7426,7 @@ msgstr "Иконица радне површине" #. Name of a DocType #: frappe/desk/doctype/desktop_layout/desktop_layout.json msgid "Desktop Layout" -msgstr "" +msgstr "Распоред радне површине" #. Name of a DocType #: frappe/desk/doctype/desktop_settings/desktop_settings.json @@ -8011,7 +8011,7 @@ msgstr "Назив документа" #: frappe/client.py:420 msgid "Document Name must not be empty" -msgstr "" +msgstr "Назив документа не сме бити празан" #. Name of a DocType #: frappe/core/doctype/document_naming_rule/document_naming_rule.json @@ -8484,15 +8484,15 @@ msgstr "Дупликат поља" #: frappe/public/js/frappe/form/grid.js:238 msgid "Duplicate row" -msgstr "" +msgstr "Дупликат реда" #: frappe/public/js/frappe/form/grid.js:66 msgid "Duplicate rows" -msgstr "" +msgstr "Дупликат редова" #: frappe/public/js/frappe/form/grid.js:241 msgid "Duplicate {0} rows" -msgstr "" +msgstr "Дупликат {0} редова" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the duration (Float) field in DocType 'Recorder' @@ -9458,7 +9458,7 @@ msgstr "Унесите назив датотеке" #: frappe/public/js/form_builder/components/FieldProperties.vue:65 msgid "Enter list of Options, each on a new line." -msgstr "" +msgstr "Унесите листу опција, свака у новом реду." #. Description of the 'Static Parameters' (Table) field in DocType 'SMS #. Settings' @@ -9628,7 +9628,7 @@ msgstr "Грешке" #. Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Evaluate as Expression" -msgstr "" +msgstr "Евалуирај као израз" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Name of a DocType @@ -9937,7 +9937,7 @@ 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 "" +msgstr "Извези само прилагођавања додељена изабраном модулу.
Напомена: Пре примене овог филтера, морате подесити поље Модул (за извоз) на записима прилагођених поља и поставки својства.

Упозорење:Прилагођавања из других модула биће изузета.

" #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' @@ -10043,7 +10043,7 @@ msgstr "Неуспешни задаци" #. Label of a number card in the Users Workspace #: frappe/core/workspace/users/users.json msgid "Failed Login Attempts" -msgstr "" +msgstr "Неуспешни покушаји пријављивања" #. Label of the failed_logins (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -10575,7 +10575,7 @@ 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 "" +msgstr "Подручје филтера" #. Label of the filter_data (Section Break) field in DocType 'Auto Email #. Report' @@ -10633,7 +10633,7 @@ msgstr "Филтрирани по \"{0}\"" #: frappe/public/js/frappe/form/controls/link.js:729 msgid "Filtered by: {0}." -msgstr "" +msgstr "Филтрирано по: {0}." #. Label of the filters (Code) field in DocType 'Access Log' #. Label of the filters_sb (Section Break) field in DocType 'Prepared Report' @@ -11939,7 +11939,7 @@ msgstr "Уређивач HTML" #: frappe/public/js/frappe/views/communication.js:142 msgid "HTML Message" -msgstr "" +msgstr "HTML порука" #. Label of the page (HTML Editor) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json @@ -12195,7 +12195,7 @@ msgstr "Сакривена поља" #: frappe/public/js/frappe/views/reports/query_report.js:1716 msgid "Hidden columns include:
{0}" -msgstr "" +msgstr "Скривене колоне укључују:
{0}" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -12533,7 +12533,7 @@ msgstr "Иконица" #. Label of the icon_image (Attach) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Icon Image" -msgstr "" +msgstr "Слика иконице" #. Label of the icon_style (Select) field in DocType 'Desktop Settings' #: frappe/desk/doctype/desktop_settings/desktop_settings.json @@ -12547,7 +12547,7 @@ msgstr "Врста иконице" #: frappe/desk/page/desktop/desktop.js:1004 msgid "Icon is not correctly configured please check the workspace sidebar to it" -msgstr "" +msgstr "Иконица није правилно подешена, молимо Вас да проверите бочну траку радног простора" #. Description of the 'Icon' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json @@ -13767,7 +13767,7 @@ msgstr "Неважећи статус документа" #: frappe/model/workflow.py:112 msgid "Invalid expression in Workflow Update Value: {0}" -msgstr "" +msgstr "Неважећи израз у вредности ажурирања радног тока: {0}" #: frappe/public/js/frappe/utils/dashboard_utils.js:229 msgid "Invalid expression set in filter {0}" @@ -14743,11 +14743,11 @@ msgstr "Последња активност" #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163 msgid "Last Edited by You" -msgstr "" +msgstr "Последњу измену извршили сте Ви" #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164 msgid "Last Edited by {0}" -msgstr "" +msgstr "Последња измена је извршена од стране {0}" #. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json @@ -15539,7 +15539,7 @@ msgstr "Пријава" #. Label of a chart in the Users Workspace #: frappe/core/workspace/users/users.json msgid "Login Activity" -msgstr "" +msgstr "Активност пријављивања" #. Label of the login_after (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -16933,7 +16933,7 @@ msgstr "Иди на главни садржај" #. Label of the form_navigation_buttons (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Navigation Buttons" -msgstr "" +msgstr "Навигациона дугмад" #. Label of the navigation_settings_section (Section Break) field in DocType #. 'User' @@ -17248,7 +17248,7 @@ msgstr "Шаблон за следећу радњу путем имејла" #: frappe/core/doctype/success_action/success_action.js:44 msgid "Next Actions" -msgstr "" +msgstr "Следеће акције" #. Label of the next_actions_html (HTML) field in DocType 'Success Action' #: frappe/core/doctype/success_action/success_action.json @@ -18615,7 +18615,7 @@ msgstr "Отвори подешавања" #: frappe/public/js/frappe/form/toolbar.js:472 msgid "Open Sidebar" -msgstr "" +msgstr "Отвори бочну траку" #: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" @@ -18826,7 +18826,7 @@ msgstr "Оријентација" #: frappe/core/doctype/version/version.py:241 msgid "Original" -msgstr "" +msgstr "Оригинал" #: frappe/core/doctype/version/version_view.html:74 #: frappe/core/doctype/version/version_view.html:139 @@ -21128,12 +21128,12 @@ 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 "" +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 "" +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 @@ -22443,7 +22443,7 @@ 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 "" +msgstr "Ограничи уклањање" #. Label of the restrict_to_domain (Link) field in DocType 'DocType' #. Label of the restrict_to_domain (Link) field in DocType 'Module Def' @@ -22783,7 +22783,7 @@ msgstr "Ред #" #: 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 "" +msgstr "Ред # {0}: Корисници који нису администратори не могу додати улогу {1} у прилагођеном DocType-у." #: frappe/model/base_document.py:1100 msgid "Row #{0}:" @@ -23842,7 +23842,7 @@ 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 "" +msgstr "Пошаљи као необрађени HTML" #. Label of the send_email_alert (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json @@ -24131,7 +24131,7 @@ msgstr "Функционалност серверских скрипти ниј #: frappe/public/js/frappe/file_uploader/FileUploader.vue:641 msgid "Server error during upload. The file might be corrupted." -msgstr "" +msgstr "Серверска грешка током отпремања. Фајл може бити оштећен." #: frappe/public/js/frappe/request.js:252 msgid "Server failed to process this request because of a concurrent conflicting request. Please try again." @@ -26388,7 +26388,7 @@ msgstr "Подешавање система" #. Label of a number card in the Users Workspace #: frappe/core/workspace/users/users.json msgid "System Users" -msgstr "" +msgstr "Системски корисници" #. Description of the 'Allow Roles' (Table MultiSelect) field in DocType #. 'Module Onboarding' @@ -26410,7 +26410,7 @@ msgstr "URI услова коришћења" #. Sidebar Item' #: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json msgid "Tab" -msgstr "" +msgstr "Картица" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -26958,7 +26958,7 @@ 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 "" +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}." @@ -27838,7 +27838,7 @@ msgstr "Превише задатака у позадини у реду чека #: frappe/templates/includes/login/login.js:291 msgid "Too many requests. Please try again later." -msgstr "" +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" @@ -29386,7 +29386,7 @@ msgstr "Вредност коју треба поставити" #: frappe/model/base_document.py:820 msgid "Value Too Long" -msgstr "" +msgstr "Вредност је предугачка" #: frappe/model/base_document.py:1176 frappe/model/document.py:877 msgid "Value cannot be changed for {0}" @@ -29437,7 +29437,7 @@ msgstr "Вредност за валидацију" #. 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 "" +msgstr "Вредност која се поставља када се примени ово стање радног тока. Користите обичан текст (нпр. Одобрено) или израз уколико је омогућено “Евалуирај као израз“." #: frappe/model/base_document.py:1246 msgid "Value too big" @@ -30002,7 +30002,7 @@ msgstr "Доступне теме веб-сајта" #. Label of a number card in the Users Workspace #: frappe/core/workspace/users/users.json msgid "Website Users" -msgstr "" +msgstr "Корисници веб-сајта" #. Label of a chart in the Website Workspace #: frappe/website/workspace/website/website.json @@ -30261,7 +30261,7 @@ msgstr "Стање документа у радном току" #: frappe/model/workflow.py:113 msgid "Workflow Evaluation Error" -msgstr "" +msgstr "Грешка у евалуацији радног тока" #. Label of the workflow_name (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json @@ -30787,7 +30787,7 @@ msgstr "Не можете креирати графикон контролне #: frappe/share.py:246 msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`" -msgstr "" +msgstr "Не можете делити `{0}` на {1} `{2}` јер немате `{0}` дозволу на `{1}`" #: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" @@ -30837,7 +30837,7 @@ msgstr "Немате дозволу за увоз за {0}" #: frappe/database/query.py:943 msgid "You do not have permission to access child table field: {0}" -msgstr "" +msgstr "Немате дозволу за приступ пољу у зависној табели: {0}" #: frappe/database/query.py:953 msgid "You do not have permission to access field: {0}" @@ -31464,14 +31464,14 @@ msgstr "увоз" #: frappe/public/js/frappe/form/controls/link.js:649 #: frappe/public/js/frappe/form/controls/link.js:656 msgid "is disabled" -msgstr "" +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 "" +msgstr "је омогућено" #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" @@ -32107,7 +32107,7 @@ msgstr "{0} садржи неважећи израз функције преуз #: frappe/public/js/frappe/form/controls/link.js:669 msgid "{0} contains {1}" -msgstr "" +msgstr "{0} садржи {1}" #: frappe/public/js/frappe/views/interaction.js:261 msgid "{0} created successfully" @@ -32132,7 +32132,7 @@ msgstr "пре {0} дана" #: frappe/public/js/frappe/form/controls/link.js:671 msgid "{0} does not contain {1}" -msgstr "" +msgstr "{0} не садржи {1}" #: frappe/website/doctype/website_settings/website_settings.py:96 #: frappe/website/doctype/website_settings/website_settings.py:116 @@ -32141,7 +32141,7 @@ msgstr "{0} не постоји у реду {1}" #: frappe/public/js/frappe/form/controls/link.js:644 msgid "{0} equals {1}" -msgstr "" +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" @@ -32190,7 +32190,7 @@ msgstr "{0} у реду {1} не може имати URL и зависне ст #: frappe/public/js/frappe/form/controls/link.js:710 msgid "{0} is a descendant of {1}" -msgstr "" +msgstr "{0} је потомак {1}" #: frappe/core/doctype/doctype/doctype.py:952 msgid "{0} is a mandatory field" @@ -32202,11 +32202,11 @@ msgstr "{0} није важећи зип фајл" #: frappe/public/js/frappe/form/controls/link.js:674 msgid "{0} is after {1}" -msgstr "" +msgstr "{0} је након {1}" #: frappe/public/js/frappe/form/controls/link.js:712 msgid "{0} is an ancestor of {1}" -msgstr "" +msgstr "{0} је надређен {1}" #: frappe/core/doctype/doctype/doctype.py:1647 msgid "{0} is an invalid Data field." @@ -32218,11 +32218,11 @@ msgstr "{0} није важећа имејл адреса у 'Примаоци'" #: frappe/public/js/frappe/form/controls/link.js:679 msgid "{0} is before {1}" -msgstr "" +msgstr "{0} је пре {1}" #: frappe/public/js/frappe/form/controls/link.js:708 msgid "{0} is between {1}" -msgstr "" +msgstr "{0} је између {1}" #: frappe/public/js/frappe/form/controls/link.js:705 #: frappe/public/js/frappe/views/reports/report_view.js:1464 @@ -32237,12 +32237,12 @@ 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 "" +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 "" +msgstr "{0} је омогућен" #: frappe/public/js/frappe/views/reports/report_view.js:1433 msgid "{0} is equal to {1}" @@ -32282,7 +32282,7 @@ msgstr "{0} није зависна табела од {1}" #: frappe/public/js/frappe/form/controls/link.js:714 msgid "{0} is not a descendant of {1}" -msgstr "" +msgstr "{0} није потомак {1}" #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" @@ -32347,7 +32347,7 @@ msgstr "{0} није дозвољена улога за {1}" #: frappe/public/js/frappe/form/controls/link.js:716 msgid "{0} is not an ancestor of {1}" -msgstr "" +msgstr "{0} није надређен {1}" #: frappe/public/js/frappe/form/controls/link.js:663 #: frappe/public/js/frappe/views/reports/report_view.js:1438 @@ -32374,11 +32374,11 @@ msgstr "{0} је сада подразумевани формат за штам #: frappe/public/js/frappe/form/controls/link.js:684 msgid "{0} is on or after {1}" -msgstr "" +msgstr "{0} је на или након {1}" #: frappe/public/js/frappe/form/controls/link.js:689 msgid "{0} is on or before {1}" -msgstr "" +msgstr "{0} је на или пре {1}" #: frappe/public/js/frappe/form/controls/link.js:665 #: frappe/public/js/frappe/views/reports/report_view.js:1472 @@ -32405,7 +32405,7 @@ msgstr "{0} је унутар {1}" #: frappe/public/js/frappe/form/controls/link.js:699 msgid "{0} is {1}" -msgstr "" +msgstr "{0} је {1}" #: frappe/public/js/frappe/list/list_view.js:1852 msgid "{0} items selected" @@ -32750,43 +32750,43 @@ msgstr "{0}: Дозвола на нивоу 0 мора бити поставље #: frappe/core/doctype/doctype/doctype.py:1910 msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType." -msgstr "" +msgstr "{0}: Дозвола за 'Измени' не може бити додељена за DocType који се не може поднети." #: frappe/core/doctype/doctype/doctype.py:1858 msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission." -msgstr "" +msgstr "{0}: Дозвола за 'Измени' не може бити додељена без дозволе 'Креирај'." #: frappe/core/doctype/doctype/doctype.py:1845 msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission." -msgstr "" +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 "" +msgstr "{0}: Дозвола за 'Извоз' је уклоњена јер не може бити додељена за јединствени DocType." #: frappe/core/doctype/doctype/doctype.py:1918 msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType." -msgstr "" +msgstr "{0}: Дозвола за 'Увоз' не може бити додељена за DocType који се не може увозити." #: frappe/core/doctype/doctype/doctype.py:1864 msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission." -msgstr "" +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 "" +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 "" +msgstr "{0}: Дозвола за 'Извештај' је уклоњена јер не може бити додељена за јединствени DocType." #: frappe/core/doctype/doctype/doctype.py:1903 msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType." -msgstr "" +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 "" +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}" @@ -32794,7 +32794,7 @@ msgstr "{0}: Можете повећати ограничење за ово по #: frappe/core/doctype/doctype/doctype.py:1297 msgid "{0}: fieldname cannot be set to reserved field {1} in DocType" -msgstr "" +msgstr "{0}: Назив поља не може бити постављен на резервисано поље {1} у DocType-у" #: frappe/core/doctype/doctype/doctype.py:1288 msgid "{0}: fieldname cannot be set to reserved keyword {1}" diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po index 9a5ffea76d..d62ab6ef0b 100644 --- a/frappe/locale/sr_CS.po +++ b/frappe/locale/sr_CS.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" "POT-Creation-Date: 2026-01-22 13:03+0000\n" -"PO-Revision-Date: 2026-01-23 13:50\n" +"PO-Revision-Date: 2026-01-24 14:52\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Serbian (Latin)\n" "MIME-Version: 1.0\n" @@ -1462,7 +1462,7 @@ msgstr "Dodaj polje" #: frappe/public/js/frappe/form/grid.js:66 msgid "Add multiple" -msgstr "" +msgstr "Dodaj više" #: frappe/public/js/form_builder/components/Sidebar.vue:46 #: frappe/public/js/form_builder/components/Tabs.vue:153 @@ -1795,7 +1795,7 @@ msgstr "Poravnaj vrednosti" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Alignment" -msgstr "" +msgstr "Poravnanje" #. Name of a role #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' @@ -2556,7 +2556,7 @@ msgstr "Primeni filtere" #: frappe/custom/doctype/customize_form/customize_form.js:271 msgid "Apply Module Export Filter" -msgstr "" +msgstr "Primeni filter za izvoz modula" #. Label of the apply_strict_user_permissions (Check) field in DocType 'System #. Settings' @@ -2638,7 +2638,7 @@ msgstr "Da li ste sigurni da želite da očistite dodeljene zadatke?" #: frappe/public/js/frappe/form/grid.js:319 msgid "Are you sure you want to delete all {0} rows?" -msgstr "" +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:135 @@ -4293,7 +4293,7 @@ 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 "" +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" @@ -4661,7 +4661,7 @@ msgstr "Proveri evidenciju grešaka za više informacija: {0}" #. '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 "" +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." @@ -6046,11 +6046,11 @@ msgstr "Kreirano od strane" #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174 msgid "Created By You" -msgstr "" +msgstr "Kreirano od strane Vas" #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175 msgid "Created By {0}" -msgstr "" +msgstr "Kreirano od strane {0}" #: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" @@ -7132,7 +7132,7 @@ msgstr "Obriši sve" #: frappe/public/js/frappe/form/grid.js:367 msgid "Delete all {0} rows" -msgstr "" +msgstr "Obriši svih {0} redova" #: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "Delete and Generate New" @@ -7164,7 +7164,7 @@ msgstr "Obriši celu karticu zajedno sa poljima" #: frappe/public/js/frappe/form/grid.js:237 msgid "Delete row" -msgstr "" +msgstr "Obriši red" #: frappe/public/js/form_builder/components/Section.vue:132 msgctxt "Button text" @@ -7192,7 +7192,7 @@ msgstr "Trajno obriši {0} stavke?" #: frappe/public/js/frappe/form/grid.js:240 msgid "Delete {0} rows" -msgstr "" +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 @@ -7427,7 +7427,7 @@ msgstr "Ikonica radne površine" #. Name of a DocType #: frappe/desk/doctype/desktop_layout/desktop_layout.json msgid "Desktop Layout" -msgstr "" +msgstr "Raspored radne površine" #. Name of a DocType #: frappe/desk/doctype/desktop_settings/desktop_settings.json @@ -8012,7 +8012,7 @@ msgstr "Naziv dokumenta" #: frappe/client.py:420 msgid "Document Name must not be empty" -msgstr "" +msgstr "Naziv dokumenta ne sme biti prazan" #. Name of a DocType #: frappe/core/doctype/document_naming_rule/document_naming_rule.json @@ -8485,15 +8485,15 @@ msgstr "Duplikat polja" #: frappe/public/js/frappe/form/grid.js:238 msgid "Duplicate row" -msgstr "" +msgstr "Duplikat reda" #: frappe/public/js/frappe/form/grid.js:66 msgid "Duplicate rows" -msgstr "" +msgstr "Duplikat redova" #: frappe/public/js/frappe/form/grid.js:241 msgid "Duplicate {0} rows" -msgstr "" +msgstr "Duplikat {0} redova" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the duration (Float) field in DocType 'Recorder' @@ -9459,7 +9459,7 @@ msgstr "Unesite naziv datoteke" #: frappe/public/js/form_builder/components/FieldProperties.vue:65 msgid "Enter list of Options, each on a new line." -msgstr "" +msgstr "Unesite listu opcija, svaka u novom redu." #. Description of the 'Static Parameters' (Table) field in DocType 'SMS #. Settings' @@ -9629,7 +9629,7 @@ msgstr "Greške" #. Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Evaluate as Expression" -msgstr "" +msgstr "Evaluiraj kao izraz" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Name of a DocType @@ -9938,7 +9938,7 @@ 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 "" +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' @@ -10044,7 +10044,7 @@ msgstr "Neuspešni zadaci" #. Label of a number card in the Users Workspace #: frappe/core/workspace/users/users.json msgid "Failed Login Attempts" -msgstr "" +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 @@ -10576,7 +10576,7 @@ 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 "" +msgstr "Područje filtera" #. Label of the filter_data (Section Break) field in DocType 'Auto Email #. Report' @@ -10634,7 +10634,7 @@ msgstr "Filtrirani po \"{0}\"" #: frappe/public/js/frappe/form/controls/link.js:729 msgid "Filtered by: {0}." -msgstr "" +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' @@ -11940,7 +11940,7 @@ msgstr "Uređivač HTML" #: frappe/public/js/frappe/views/communication.js:142 msgid "HTML Message" -msgstr "" +msgstr "HTML poruka" #. Label of the page (HTML Editor) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json @@ -12196,7 +12196,7 @@ msgstr "Sakrivena polja" #: frappe/public/js/frappe/views/reports/query_report.js:1716 msgid "Hidden columns include:
{0}" -msgstr "" +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 @@ -12534,7 +12534,7 @@ 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 "" +msgstr "Slika ikonice" #. Label of the icon_style (Select) field in DocType 'Desktop Settings' #: frappe/desk/doctype/desktop_settings/desktop_settings.json @@ -12548,7 +12548,7 @@ msgstr "Vrsta ikonice" #: frappe/desk/page/desktop/desktop.js:1004 msgid "Icon is not correctly configured please check the workspace sidebar to it" -msgstr "" +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 @@ -13768,7 +13768,7 @@ msgstr "Nevažeći status dokumenta" #: frappe/model/workflow.py:112 msgid "Invalid expression in Workflow Update Value: {0}" -msgstr "" +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}" @@ -14744,11 +14744,11 @@ msgstr "Poslednja aktivnost" #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163 msgid "Last Edited by You" -msgstr "" +msgstr "Poslednju izmenu izvršili ste Vi" #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164 msgid "Last Edited by {0}" -msgstr "" +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 @@ -15540,7 +15540,7 @@ msgstr "Prijava" #. Label of a chart in the Users Workspace #: frappe/core/workspace/users/users.json msgid "Login Activity" -msgstr "" +msgstr "Aktivnost prijavljivanja" #. Label of the login_after (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -16934,7 +16934,7 @@ 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 "" +msgstr "Navigaciona dugmad" #. Label of the navigation_settings_section (Section Break) field in DocType #. 'User' @@ -17249,7 +17249,7 @@ msgstr "Šablon za sledeću radnju putem imejla" #: frappe/core/doctype/success_action/success_action.js:44 msgid "Next Actions" -msgstr "" +msgstr "Sledeće akcije" #. Label of the next_actions_html (HTML) field in DocType 'Success Action' #: frappe/core/doctype/success_action/success_action.json @@ -18616,7 +18616,7 @@ msgstr "Otvori podešavanja" #: frappe/public/js/frappe/form/toolbar.js:472 msgid "Open Sidebar" -msgstr "" +msgstr "Otvori bočnu traku" #: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" @@ -21129,12 +21129,12 @@ 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 "" +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 "" +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 @@ -22444,7 +22444,7 @@ 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 "" +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' @@ -22784,7 +22784,7 @@ msgstr "Red #" #: 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 "" +msgstr "Red # {0}: Korisnici koji nisu administratori ne mogu dodati ulogu {1} u prilagođenom DocType-u." #: frappe/model/base_document.py:1100 msgid "Row #{0}:" @@ -23843,7 +23843,7 @@ 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 "" +msgstr "Pošalji kao neobrađeni HTML" #. Label of the send_email_alert (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json @@ -24132,7 +24132,7 @@ msgstr "Funkcionalnost serverskih skripti nije dostupna na ovom sajtu." #: frappe/public/js/frappe/file_uploader/FileUploader.vue:641 msgid "Server error during upload. The file might be corrupted." -msgstr "" +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." @@ -26389,7 +26389,7 @@ msgstr "Podešavanje sistema" #. Label of a number card in the Users Workspace #: frappe/core/workspace/users/users.json msgid "System Users" -msgstr "" +msgstr "Sistemski korisnici" #. Description of the 'Allow Roles' (Table MultiSelect) field in DocType #. 'Module Onboarding' @@ -26411,7 +26411,7 @@ msgstr "URI uslova korišćenja" #. Sidebar Item' #: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json msgid "Tab" -msgstr "" +msgstr "Kartica" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -26959,7 +26959,7 @@ msgstr "Korisnik može pregledati izlazne fakture, ali ne može menjati vrednost #: 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 "" +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}." @@ -27839,7 +27839,7 @@ msgstr "Previše zadataka u pozadini u redu čekanja ({0}). Molimo Vas da pokuš #: frappe/templates/includes/login/login.js:291 msgid "Too many requests. Please try again later." -msgstr "" +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" @@ -29386,7 +29386,7 @@ msgstr "Vrednost koju treba postaviti" #: frappe/model/base_document.py:820 msgid "Value Too Long" -msgstr "" +msgstr "Vrednost je predugačka" #: frappe/model/base_document.py:1176 frappe/model/document.py:877 msgid "Value cannot be changed for {0}" @@ -29437,7 +29437,7 @@ msgstr "Vrednost za validaciju" #. 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 "" +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" @@ -30002,7 +30002,7 @@ msgstr "Dostupne teme veb-sajta" #. Label of a number card in the Users Workspace #: frappe/core/workspace/users/users.json msgid "Website Users" -msgstr "" +msgstr "Korisnici veb-sajta" #. Label of a chart in the Website Workspace #: frappe/website/workspace/website/website.json @@ -30261,7 +30261,7 @@ msgstr "Stanje dokumenta u radnom toku" #: frappe/model/workflow.py:113 msgid "Workflow Evaluation Error" -msgstr "" +msgstr "Greška u evaluaciji radnog toka" #. Label of the workflow_name (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json @@ -30787,7 +30787,7 @@ 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 "" +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}" @@ -30837,7 +30837,7 @@ msgstr "Nemate dozvolu za uvoz za {0}" #: frappe/database/query.py:943 msgid "You do not have permission to access child table field: {0}" -msgstr "" +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}" @@ -31464,14 +31464,14 @@ msgstr "uvoz" #: frappe/public/js/frappe/form/controls/link.js:649 #: frappe/public/js/frappe/form/controls/link.js:656 msgid "is disabled" -msgstr "" +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 "" +msgstr "je omogućeno" #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" @@ -32141,7 +32141,7 @@ msgstr "{0} ne postoji u redu {1}" #: frappe/public/js/frappe/form/controls/link.js:644 msgid "{0} equals {1}" -msgstr "" +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" @@ -32190,7 +32190,7 @@ msgstr "{0} u redu {1} ne može imati URL i zavisne stavke" #: frappe/public/js/frappe/form/controls/link.js:710 msgid "{0} is a descendant of {1}" -msgstr "" +msgstr "{0} je potomak {1}" #: frappe/core/doctype/doctype/doctype.py:952 msgid "{0} is a mandatory field" @@ -32202,11 +32202,11 @@ msgstr "{0} nije važeći zip fajl" #: frappe/public/js/frappe/form/controls/link.js:674 msgid "{0} is after {1}" -msgstr "" +msgstr "{0} je nakon {1}" #: frappe/public/js/frappe/form/controls/link.js:712 msgid "{0} is an ancestor of {1}" -msgstr "" +msgstr "{0} je nadređen {1}" #: frappe/core/doctype/doctype/doctype.py:1647 msgid "{0} is an invalid Data field." @@ -32218,11 +32218,11 @@ 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 "" +msgstr "{0} je pre {1}" #: frappe/public/js/frappe/form/controls/link.js:708 msgid "{0} is between {1}" -msgstr "" +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 @@ -32237,12 +32237,12 @@ 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 "" +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 "" +msgstr "{0} je omogućen" #: frappe/public/js/frappe/views/reports/report_view.js:1433 msgid "{0} is equal to {1}" @@ -32282,7 +32282,7 @@ 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 "" +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}" @@ -32347,7 +32347,7 @@ 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 "" +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 @@ -32374,11 +32374,11 @@ 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 "" +msgstr "{0} je na ili nakon {1}" #: frappe/public/js/frappe/form/controls/link.js:689 msgid "{0} is on or before {1}" -msgstr "" +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 @@ -32405,7 +32405,7 @@ msgstr "{0} je unutar {1}" #: frappe/public/js/frappe/form/controls/link.js:699 msgid "{0} is {1}" -msgstr "" +msgstr "{0} je {1}" #: frappe/public/js/frappe/list/list_view.js:1852 msgid "{0} items selected" @@ -32750,43 +32750,43 @@ 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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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}" @@ -32794,7 +32794,7 @@ msgstr "{0}: Možete povećati ograničenje za ovo polje ukoliko je potrebno put #: frappe/core/doctype/doctype/doctype.py:1297 msgid "{0}: fieldname cannot be set to reserved field {1} in DocType" -msgstr "" +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}" From 50121fd81a76a37194b938b012d5fbf9d076efe0 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan <67804911+iamejaaz@users.noreply.github.com> Date: Sun, 25 Jan 2026 11:53:54 +0530 Subject: [PATCH 213/263] Revert "fix: show sidebar in print format builder" --- .../page/print_format_builder/print_format_builder.js | 8 -------- 1 file changed, 8 deletions(-) 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 162908ac89..bae82ba040 100644 --- a/frappe/printing/page/print_format_builder/print_format_builder.js +++ b/frappe/printing/page/print_format_builder/print_format_builder.js @@ -58,17 +58,9 @@ frappe.PrintFormatBuilder = class PrintFormatBuilder { this.setup_section_settings(); this.setup_column_selector(); this.setup_edit_custom_html(); - this.show_sidebar(); // $(this.page.sidebar).css({"position": 'fixed'}); // $(this.page.main).parent().css({"margin-left": '16.67%'}); } - show_sidebar() { - $(".layout-side-section").css({ - display: "block", - flex: "0 0 260px", - maxWidth: "260px", - }); - } show_start() { this.page.main.html(frappe.render_template("print_format_builder_start", {})); this.page.clear_actions(); From 6613c4da1d2221c02b77a200b5ea49d174bb5dee Mon Sep 17 00:00:00 2001 From: Aarol D'Souza <98270103+AarDG10@users.noreply.github.com> Date: Sun, 25 Jan 2026 12:07:46 +0530 Subject: [PATCH 214/263] ci: autolabel postgres based on touched files (#36282) --- .github/helper/roulette.py | 13 +++++++++++++ .github/workflows/server-tests.yml | 3 ++- 2 files changed, 15 insertions(+), 1 deletion(-) 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/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' }} From 9b9257c4c63d1f9f23d30f28cb6a6897fa5110e4 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Sun, 25 Jan 2026 12:09:54 +0530 Subject: [PATCH 215/263] fix: hide sidebar only in list view --- frappe/public/js/frappe/form/toolbar.js | 1 - frappe/public/js/frappe/list/base_list.js | 7 +++---- frappe/public/scss/desk/page.scss | 6 ------ 3 files changed, 3 insertions(+), 11 deletions(-) diff --git a/frappe/public/js/frappe/form/toolbar.js b/frappe/public/js/frappe/form/toolbar.js index 8d1b448be8..5311020133 100644 --- a/frappe/public/js/frappe/form/toolbar.js +++ b/frappe/public/js/frappe/form/toolbar.js @@ -888,7 +888,6 @@ frappe.ui.form.Toolbar = class Toolbar { } setup_sidebar_toggle(sidebar_wrapper) { - console.log(sidebar_wrapper); if (frappe.utils.is_xs() || frappe.utils.is_sm()) { this.setup_overlay_sidebar(sidebar_wrapper); } else { diff --git a/frappe/public/js/frappe/list/base_list.js b/frappe/public/js/frappe/list/base_list.js index 00818adc80..3cc515932f 100644 --- a/frappe/public/js/frappe/list/base_list.js +++ b/frappe/public/js/frappe/list/base_list.js @@ -275,16 +275,15 @@ frappe.views.BaseList = class BaseList { frappe.breadcrumbs.add(this.meta.module, this.doctype); } - show_or_hide_sidebar() { - let show_sidebar = JSON.parse(localStorage.show_sidebar || "true"); - $(document.body).toggleClass("no-list-sidebar", !show_sidebar); + hide_sidebar() { + $(document.body).toggleClass("no-list-sidebar", true); } setup_main_section() { return frappe.run_serially( [ this.setup_list_wrapper, - this.show_or_hide_sidebar, + this.hide_sidebar, this.setup_filter_area, this.setup_sort_selector, this.setup_result_container_area, diff --git a/frappe/public/scss/desk/page.scss b/frappe/public/scss/desk/page.scss index 35b451fd6f..3f0591442a 100644 --- a/frappe/public/scss/desk/page.scss +++ b/frappe/public/scss/desk/page.scss @@ -1,9 +1,3 @@ -body:not([data-route^="Form"]) { - .layout-side-section { - display: none; - } -} - .page-title { display: flex; align-items: center; From 84cc271a995e17f007ef4d7ccccd775b992dae73 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sun, 25 Jan 2026 15:50:55 +0530 Subject: [PATCH 216/263] fix: give permission to all of them --- frappe/desk/doctype/desktop_icon/desktop_icon.json | 14 +++++++++++++- .../doctype/desktop_layout/desktop_layout.json | 14 +++++++++++++- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/frappe/desk/doctype/desktop_icon/desktop_icon.json b/frappe/desk/doctype/desktop_icon/desktop_icon.json index 9b04345ccf..fe7bfb7585 100644 --- a/frappe/desk/doctype/desktop_icon/desktop_icon.json +++ b/frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -144,7 +144,7 @@ } ], "links": [], - "modified": "2026-01-23 14:33:55.594120", + "modified": "2026-01-25 15:29:33.884930", "modified_by": "Administrator", "module": "Desk", "name": "Desktop Icon", @@ -162,6 +162,18 @@ "role": "System Manager", "share": 1, "write": 1 + }, + { + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "Desk User", + "share": 1, + "write": 1 } ], "quick_entry": 1, diff --git a/frappe/desk/doctype/desktop_layout/desktop_layout.json b/frappe/desk/doctype/desktop_layout/desktop_layout.json index 0cdbf5921a..91e516df86 100644 --- a/frappe/desk/doctype/desktop_layout/desktop_layout.json +++ b/frappe/desk/doctype/desktop_layout/desktop_layout.json @@ -27,7 +27,7 @@ "grid_page_length": 50, "index_web_pages_for_search": 1, "links": [], - "modified": "2026-01-18 02:45:37.287424", + "modified": "2026-01-25 15:30:12.805037", "modified_by": "Administrator", "module": "Desk", "name": "Desktop Layout", @@ -45,6 +45,18 @@ "role": "System Manager", "share": 1, "write": 1 + }, + { + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "Desk User", + "share": 1, + "write": 1 } ], "row_format": "Dynamic", From 51ad3ad3091e629281b1df1185323163945047b1 Mon Sep 17 00:00:00 2001 From: sokumon Date: Sun, 25 Jan 2026 15:57:14 +0530 Subject: [PATCH 217/263] fix: make reset to default work --- frappe/desk/page/desktop/desktop.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frappe/desk/page/desktop/desktop.js b/frappe/desk/page/desktop/desktop.js index 8b0ef1c1dc..aff4220659 100644 --- a/frappe/desk/page/desktop/desktop.js +++ b/frappe/desk/page/desktop/desktop.js @@ -129,8 +129,9 @@ function save_desktop(icons) { } function reset_to_default() { - frappe.model.user_settings.save("Desktop Icon", "icons_to_create", null); - frappe.model.user_settings.save("Desktop Icon", "desktop_layout", null); + frappe.db.delete_doc("Desktop Layout", frappe.session.user).then(() => { + frappe.ui.toolbar.clear_cache(); + }); } function toggle_icons(icons) { From 7edf1cfb7b41a846e9228cfd2c898799572ae831 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Sun, 25 Jan 2026 17:16:11 +0530 Subject: [PATCH 218/263] fix: change label of toggle sidebar --- frappe/public/js/frappe/form/toolbar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/toolbar.js b/frappe/public/js/frappe/form/toolbar.js index 5311020133..78944ba56d 100644 --- a/frappe/public/js/frappe/form/toolbar.js +++ b/frappe/public/js/frappe/form/toolbar.js @@ -469,7 +469,7 @@ frappe.ui.form.Toolbar = class Toolbar { return; } this.page.add_menu_item( - __("Open Sidebar"), + __("Toggle Sidebar"), () => { this.setup_sidebar_toggle(this.frm.sidebar.sidebar.parent()); }, From cfe8841d23facdd21d0cab9ba1308b1611b3d4fc Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Sun, 25 Jan 2026 18:08:33 +0530 Subject: [PATCH 219/263] fix: show maintainance and impersonate on primary nav --- .../js/frappe/form/sidebar/form_sidebar.js | 1 - frappe/public/js/frappe/ui/page.html | 11 +++++++++++ frappe/public/js/frappe/ui/page.js | 2 +- .../public/js/frappe/ui/toolbar/navbar.html | 19 ------------------- 4 files changed, 12 insertions(+), 21 deletions(-) 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/ui/page.html b/frappe/public/js/frappe/ui/page.html index 50680684d0..039f564f03 100644 --- a/frappe/public/js/frappe/ui/page.html +++ b/frappe/public/js/frappe/ui/page.html @@ -72,6 +72,17 @@ + {% if (frappe.boot.read_only) { %} + + {%= __("Read Only Mode") %} + + {% } %} + {% if (frappe.boot.user.impersonated_by) { %} + + {%= __("Impersonating {0}", [frappe.boot.user.name]) %} + + {% } %} 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/toolbar/navbar.html b/frappe/public/js/frappe/ui/toolbar/navbar.html index bd09ee0774..9e973f514a 100644 --- a/frappe/public/js/frappe/ui/toolbar/navbar.html +++ b/frappe/public/js/frappe/ui/toolbar/navbar.html @@ -1,23 +1,4 @@
- {% if (frappe.boot.read_only || frappe.boot.user.impersonated_by) { %} - - {% endif %} - {% if !localStorage.getItem("dismissed_announcement_widget") && strip_html(navbar_settings.announcement_widget) != '' %}
From 952c5e211aa4dd028bb8086df907a46850f5bc55 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Sun, 25 Jan 2026 18:39:32 +0530 Subject: [PATCH 220/263] fix: hide worksapce and doctype if no space --- frappe/public/js/frappe/form/form.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js index 6537e74d21..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) { From d05c08a57dd0ddb884c106b4c464ac556808eb67 Mon Sep 17 00:00:00 2001 From: KerollesFathy Date: Sun, 25 Jan 2026 13:37:37 +0000 Subject: [PATCH 221/263] fix: show icon of edit icon when is_title_editable or can_rename --- frappe/public/js/frappe/form/toolbar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/toolbar.js b/frappe/public/js/frappe/form/toolbar.js index 78944ba56d..6a80d18dfa 100644 --- a/frappe/public/js/frappe/form/toolbar.js +++ b/frappe/public/js/frappe/form/toolbar.js @@ -204,7 +204,7 @@ frappe.ui.form.Toolbar = class Toolbar { setup_editable_title(element) { let me = this; - if (me.is_title_editable()) { + if (me.is_title_editable() || me.can_rename()) { let edit_icon = this.page.add_action_icon( "square-pen", () => { From ade5044f96b5cacd8bda942da7b3864fc7ac10c1 Mon Sep 17 00:00:00 2001 From: Pugazhendhi Velu Date: Sun, 25 Jan 2026 13:53:58 +0000 Subject: [PATCH 222/263] fix(form-sidebar): render title only when title field has a value --- frappe/public/js/frappe/form/templates/form_sidebar.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 @@